Skip to content

Commit

Permalink
Fixing #259 - docs sync
Browse files Browse the repository at this point in the history
  • Loading branch information
rodydavis committed May 8, 2024
1 parent 2fe3c7b commit 2ff07c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/src/content/docs/async/state.md
Expand Up @@ -70,7 +70,7 @@ final s = asyncSignal<int>(AsyncState.loading());
print(s.isRefreshing); // false
s.value = AsyncState.error('error', null, isLoading: true);
print(s.isRefreshing); // true
s.value = AsyncState.data(1, isLoading: true);
s.value = AsyncData(1, isLoading: true);
print(s.isRefreshing); // true
```

Expand Down

0 comments on commit 2ff07c0

Please sign in to comment.