Liu Song’s Projects


~/Projects/fre

git clone https://code.lsong.org/fre

Commit

Commit
a88a24c3afbdff45b5a921a40650eb4cdddd0fa3
Author
伊撒尔 <[email protected]>
Date
2021-05-10 15:36:04 +0800 +0800
Diffstat
 README.md | 2 +-

Merge pull request #266 from imtaotao/master

docs: update readme


diff --git a/README.md b/README.md
index 9cd65513ffb3659f190298c7a58d6baae006048e..06a7c988d8e1b8b47cea04585b4c9bd7b78b2914 100644
--- a/README.md
+++ b/README.md
@@ -158,7 +158,7 @@ `useCallback` is based `useMemo`, it will return a cached function.
 

 ```js

 const cb = useCallback(() => {

-  console.log('cb was cached')

+  console.log('cb was cached.')

 }, [])

 ```