summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilson Page <wilsonpage@me.com>2014-03-03 14:30:46 +0000
committerWilson Page <wilsonpage@me.com>2014-03-03 14:30:46 +0000
commitc7c66fcbb34689c71cba91e1cbe11bfd422a0103 (patch)
treeef02fb50e5808f0568d35100386c847a4775aa4a
parentc5cd9d9de649e3211009ddaa02a3b3f7afb66329 (diff)
parent18dd124d047f4a0b24d8d110e1b0dd7dc800193c (diff)
downloadfastdom-c7c66fcbb34689c71cba91e1cbe11bfd422a0103.zip
fastdom-c7c66fcbb34689c71cba91e1cbe11bfd422a0103.tar.gz
fastdom-c7c66fcbb34689c71cba91e1cbe11bfd422a0103.tar.bz2
Merge pull request #42 from elving/patch-1
Fix typo.
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 2cdb936..2effc06 100644
--- a/README.md
+++ b/README.md
@@ -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.