Skip to content

Commit eaafc2f

Browse files
committed
Merge branch 'master' into pre-release_6.0.0
2 parents ce1e410 + 845b31a commit eaafc2f

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -731,7 +731,8 @@ class AppController {
731731
AppController() {
732732
UseEffect(() {
733733
authController = useAuthController.instance;
734-
}, [useAuthController]);
734+
}, [useAuthController],
735+
);
735736
}
736737
}
737738
```
@@ -977,7 +978,7 @@ Reactter.emit(appController, Lifecycle.didUpdate, 'test param');
977978
UseEffect(
978979
<Function cleanup> Function callback,
979980
List<ReactterState> dependencies,
980-
[Object? instance]
981+
[Object? instance],
981982
)
982983
```
983984

@@ -1384,7 +1385,7 @@ Memo<T, A>(
13841385
`Memo` accepts theses properties:
13851386

13861387
- `computeValue`: Represents a function that takes an argument of type `A` and returns a value of type `T`. This is the core function that will be memoized.
1387-
- `interceptor`: Receives a [`MemoInterceptor`](https://pub.dev/documentation/reactter/6.0.0/reactter/MemoInterceptor-class.html) that allows you to intercept the memoization function calls and modify the memoization process.
1388+
- `interceptor`: Receives a [`MemoInterceptor`](https://pub.dev/documentation/reactter/6.0.0/reactter/MemoInterceptor-class.html) that allows you to intercept the memoization function calls and modify the memoization process.
13881389
Reactter providers some interceptors:
13891390
- [`MemoInterceptors`](https://pub.dev/documentation/reactter/6.0.0/reactter/MemoInterceptors-class.html): Allows multiple memoization interceptors to be used together.
13901391
- [`MemoInterceptorWrapper`](https://pub.dev/documentation/reactter/6.0.0/reactter/MemoInterceptorWrapper-class.html): A wrapper for a memoized function that allows you to define callbacks for initialization, successful completion, error handling, and finishing.

0 commit comments

Comments
 (0)