diff options
author | Elving Rodriguez <elving.pr@gmail.com> | 2014-01-22 08:23:34 -0800 |
---|---|---|
committer | Elving Rodriguez <elving.pr@gmail.com> | 2014-01-22 08:23:34 -0800 |
commit | 18dd124d047f4a0b24d8d110e1b0dd7dc800193c (patch) | |
tree | ef02fb50e5808f0568d35100386c847a4775aa4a | |
parent | c5cd9d9de649e3211009ddaa02a3b3f7afb66329 (diff) | |
download | fastdom-18dd124d047f4a0b24d8d110e1b0dd7dc800193c.zip fastdom-18dd124d047f4a0b24d8d110e1b0dd7dc800193c.tar.gz fastdom-18dd124d047f4a0b24d8d110e1b0dd7dc800193c.tar.bz2 |
Fix typo.
This is useful **is** you have -> This is useful **if** you have
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -83,7 +83,7 @@ fastdom.write(function() { ### FastDom#defer([frames,] callback[, context]) -Defers a job for the number of frames specified. This is useful is you have a particualrly expensive piece of work to do, and don't want it to be done with all the other work. +Defers a job for the number of frames specified. This is useful if you have a particualrly expensive piece of work to do, and don't want it to be done with all the other work. For example; you are using third party library that doesn't expose an API that allows you split DOM read/write work, `fastdom.defer()` will push this work futher into the future and prevent it from disrupting other carefully batched work. |