Commit b973ad1

derdilla <82763757+NobodyForNothing@users.noreply.github.com>
2023-10-08 19:05:02
fix documentation
Signed-off-by: derdilla <82763757+NobodyForNothing@users.noreply.github.com>
1 parent ee2c9db
Changed files (1)
lib/components/consistent_future_builder.dart
@@ -21,7 +21,7 @@ class ConsistentFutureBuilder<T> extends StatefulWidget {
 
   /// When loading the next result the child that got build the last time will be returned.
   ///
-  /// If this is the first build, [onWaiting] os respected.
+  /// During the first build, [onWaiting] os respected instead.
   final bool lastChildWhileWaiting;
 
   const ConsistentFutureBuilder({super.key, required this.future, this.onNotStarted, this.onWaiting, this.onError,