aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Kurnosov <[email protected]>2012-03-12 10:24:18 +1300
committerIvan Kurnosov <[email protected]>2012-03-12 10:24:18 +1300
commit354252b4b506221f14d3f95627b0c887eb160caa (patch)
tree044f1a57c6f7e282120668c9b91bff8255fbfa7b
parentb410eeb6dd4025718cddfc435c507bad7d47af1b (diff)
downloadbootstrap-354252b4b506221f14d3f95627b0c887eb160caa.tar.xz
bootstrap-354252b4b506221f14d3f95627b0c887eb160caa.zip
Grammar fix in js/README.md
-rw-r--r--js/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/README.md b/js/README.md
index 3aa09c960..1c3ced31f 100644
--- a/js/README.md
+++ b/js/README.md
@@ -28,7 +28,7 @@ All public APIs should be single, chainable methods, and return the collection a
All methods should accept an optional options object, a string which targets a particular method, or null which initiates the default behavior:
$("#myModal").modal() // initialized with defaults
- $("#myModal").modal({ keyboard: false }) // initialized with now keyboard
+ $("#myModal").modal({ keyboard: false }) // initialized with no keyboard
$("#myModal").modal('show') // initializes and invokes show immediately afterqwe2
---