Skip to content

Commit cbd1e67

Browse files
committed
Fixing typos in README.md
1 parent fc6276c commit cbd1e67

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ The options are the same options of ```ActiveSupport::Cache::Store```, plus
265265
a ```key``` option that will be the prefix of the object cache
266266
on a pattern ```"#{key}/#{object.id}-#{object.updated_at}"```.
267267

268-
The cache support is optimized to use the cached object in multiple request. An object cached on an ```show``` request will be reused at the ```index```. If there is a relationship with another cached serializer it will also be created and reused automatically.
268+
The cache support is optimized to use the cached object in multiple request. An object cached on a ```show``` request will be reused at the ```index```. If there is a relationship with another cached serializer it will also be created and reused automatically.
269269

270270
**[NOTE] Every object is individually cached.**
271271

@@ -294,7 +294,7 @@ but in this case it will be automatically expired after 3 hours.
294294

295295
### Fragmenting Caching
296296

297-
If there is some API endpoint that shouldn't be fully cached, you can still optmise it, using Fragment Cache on the attributes and relationships that you want to cache.
297+
If there is some API endpoint that shouldn't be fully cached, you can still optimise it, using Fragment Cache on the attributes and relationships that you want to cache.
298298

299299
You can define the attribute by using ```only``` or ```except``` option on cache method.
300300

0 commit comments

Comments
 (0)