Fix typo for source.cache in docs.

Thanks to https://github.com/DylanVann/react-native-fast-image/issues/274#issuecomment-418719314 for pointing this out
This commit is contained in:
Lucas Vieira 2018-10-13 15:33:12 -03:00 committed by Dylan Vann
parent af83017267
commit 0ef7231018
1 changed files with 3 additions and 3 deletions

View File

@ -129,9 +129,9 @@ Headers to load the image with. e.g. `{ Authorization: 'someAuthToken' }`.
### `source.cache?: enum`
- `FastImage.cache.immutable` - **(Default)** - Only updates if url changes.
- `FastImage.cache.web` - Use headers and follow normal caching procedures.
- `FastImage.cache.cacheOnly` - Only show images from cache, do not make any network requests.
- `FastImage.cacheControl.immutable` - **(Default)** - Only updates if url changes.
- `FastImage.cacheControl.web` - Use headers and follow normal caching procedures.
- `FastImage.cacheControl.cacheOnly` - Only show images from cache, do not make any network requests.
---