Fix cache enum names in README (#251)

The `priority` attribute was probably a copy-paste error?
This commit is contained in:
Martin Richter 2018-08-23 05:23:47 +02:00 committed by Dylan Vann
parent d142379e6f
commit d2c33a85ce
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.priority.immutable` - **(Default)** - Only updates if url changes.
- `FastImage.priority.web` - Use headers and follow normal caching procedures.
- `FastImage.priority.cacheOnly` - Only show images from cache, do not make any network requests.
- `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.
---