Skip to content

Commit e9455e1

Browse files
committed
Docs: typos
1 parent a6b11ab commit e9455e1

4 files changed

Lines changed: 8 additions & 8 deletions

File tree

docs/announcements-4.0.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ <h3 id="changed-id">
312312
<p>
313313
When working with array and AJAX data in the past, Select2 allowed a
314314
custom <code>id</code> function or attribute to be set in various places,
315-
ranging from the initializion of Select2 to when the remote data was being
315+
ranging from the initialization of Select2 to when the remote data was being
316316
returned. This allowed Select2 to better integrate with existing data
317317
sources that did not necessarily use the <code>id</code> attribute to
318318
indicate the unique identifier for an object.

docs/examples.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -622,7 +622,7 @@ <h1>Multiple languages</h1>
622622

623623
<p>
624624
Select2 supports displaying the messages in different languages, as well
625-
as provding your own
625+
as providing your own
626626
<a href="options.html#language">custom messages</a>
627627
that can be displayed.
628628
</p>

docs/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ <h3>
8181
</div>
8282
</li>
8383
<li>
84-
Initialize Select2 on the <code>&gt;select&lt;</code> element that you
84+
Initialize Select2 on the <code>&lt;select&gt;</code> element that you
8585
want to make awesome.
8686

8787
<pre class="code">

docs/options.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ <h1>Core options</h1>
2020

2121
<p>
2222
Select2 will automatically apply decorators to any adapters which have not
23-
been manually overriden. The only time you need to decorate adapters is
23+
been manually overridden. The only time you need to decorate adapters is
2424
when you are using third-party adapters not provided by Select2, or you
2525
are using features not provided in the Select2 core. You can apply a
2626
decorator to an adapter using the
@@ -570,7 +570,7 @@ <h2 id="dropdown-attachContainer">
570570
</h2>
571571

572572
<p>
573-
Select2 can place the dropdown directly after the selection cotainer, so
573+
Select2 can place the dropdown directly after the selection container, so
574574
it will appear in the same location within the DOM as the rest of Select2.
575575
</p>
576576

@@ -683,7 +683,7 @@ <h1>Adapters</h1>
683683
adapters. You can change almost anything involving the way Select2 works
684684
to the way Select2 interacts with the page by modifying the core adapters.
685685
Most third-party plugins should provide decorators (used to wrap adapters)
686-
and custom adpaters that you can use.
686+
and custom adapters that you can use.
687687
</p>
688688

689689
<p>
@@ -813,7 +813,7 @@ <h2 id="dataAdapter">
813813
// what options within the results are selected.
814814
//
815815
// @param callback A function that should be called when the current selection
816-
// has been retrieved. The first paramter to the function should be an array
816+
// has been retrieved. The first parameter to the function should be an array
817817
// of data objects.
818818
DataAdapter.current = function (callback) {
819819
callback(currentData);
@@ -867,7 +867,7 @@ <h2 id="resultsAdapter">
867867
The results adapter controls the list of results that the user can select
868868
from. While the results adapter does not define any additional methods
869869
that must be implemented, it makes extensive use of the Select2 event
870-
system for cotrolling the display of results and messages.
870+
system for controlling the display of results and messages.
871871
</p>
872872

873873
<dl class="dl-horizontal">

0 commit comments

Comments
 (0)