]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Fix small typo in JavaScript docs 12880/head
authorHeinrich Fenkart <hnrch02@gmail.com>
Fri, 28 Feb 2014 19:11:02 +0000 (20:11 +0100)
committerHeinrich Fenkart <hnrch02@gmail.com>
Fri, 28 Feb 2014 19:11:02 +0000 (20:11 +0100)
docs/javascript.html

index cc125d83284ac8ca3bb1f84a112e330cdb5fa97d..bf5944fcba8b41469e1dee13ebb0d274c3b61fbe 100644 (file)
@@ -65,7 +65,7 @@ $.fn.bootstrapBtn = bootstrapButton            // give $().bootstrapBtn the Boot
 {% endhighlight %}
 
   <h3 id="js-events">Events</h3>
-  <p>Bootstrap provides custom events for most plugins' unique actions. Generally, these come in an infinitive and past participle form - where the infinitive (ex. <code>show</code>) is triggered at the start of an event, and its past participle form (ex. <code>shown</code>) is trigger on the completion of an action.</p>
+  <p>Bootstrap provides custom events for most plugins' unique actions. Generally, these come in an infinitive and past participle form - where the infinitive (ex. <code>show</code>) is triggered at the start of an event, and its past participle form (ex. <code>shown</code>) is triggered on the completion of an action.</p>
   <p>As of 3.0.0, all Bootstrap events are namespaced.</p>
   <p>All infinitive events provide <code>preventDefault</code> functionality. This provides the ability to stop the execution of an action before it starts.</p>
 {% highlight js %}