Skip to content

Commit fe6fb80

Browse files
committed
change occurrences of
'keywords lists' to 'keyword lists', etc
1 parent aa8ddb3 commit fe6fb80

File tree

6 files changed

+18
-18
lines changed

6 files changed

+18
-18
lines changed

docs/master/Code.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ <h2>Examples</h2>
257257
</code></pre>
258258

259259
<p>When passing the <strong>ENV</strong>&#39;s file and line, we could simply get
260-
the location which already returns both fields as a keywords lists:</p>
260+
the location which already returns both fields as a keyword lists:</p>
261261

262262
<pre><code>Code.eval &quot;a + b&quot;, [a: 1, b: 2], __ENV__.location
263263
#=&gt; { 3, [ {:a, 1}, {:b, 2} ] }
@@ -290,7 +290,7 @@ <h2>Examples</h2>
290290
</code></pre>
291291

292292
<p>When passing the <strong>ENV</strong>&#39;s file and line, we could simply get
293-
the location which already returns both fields as a keywords lists:</p>
293+
the location which already returns both fields as a keyword lists:</p>
294294

295295
<pre><code>Code.eval_quoted contents, [a: 1, b: 2], __ENV__.location
296296
#=&gt; { 3, [ {:a, 1}, {:b, 2} ] }

docs/master/Keyword.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -148,8 +148,8 @@ <h2>Functions</h2>
148148
<p class="signature" id="delete/2">
149149
<strong>delete(keywords, key)</strong>
150150
</p>
151-
<div class="docstring"><p>Deletes all entries in the keywords list for a specific key.
152-
If the key does not exist, returns the keywords list unchanged.
151+
<div class="docstring"><p>Deletes all entries in the keyword list for a specific key.
152+
If the key does not exist, returns the keyword list unchanged.
153153
Use <code>delete_first</code> to delete just the first entry in case of
154154
duplicated keys.</p>
155155

@@ -235,7 +235,7 @@ <h2>Examples</h2>
235235
<p class="signature" id="keys/1">
236236
<strong>keys(keywords)</strong>
237237
</p>
238-
<div class="docstring"><p>Returns all keys from the keywords list. Duplicated
238+
<div class="docstring"><p>Returns all keys from the keyword list. Duplicated
239239
keys appear duplicated in the final list of keys.</p>
240240

241241
<h2>Examples</h2>
@@ -248,7 +248,7 @@ <h2>Examples</h2>
248248
<p class="signature" id="merge/2">
249249
<strong>merge(d1, d2)</strong>
250250
</p>
251-
<div class="docstring"><p>Merges two keywords lists into one. If they have duplicated
251+
<div class="docstring"><p>Merges two keyword lists into one. If they have duplicated
252252
entries, the one given as second argument wins.</p>
253253

254254
<h2>Examples</h2>
@@ -262,7 +262,7 @@ <h2>Examples</h2>
262262
<p class="signature" id="merge/3">
263263
<strong>merge(d1, d2, fun)</strong>
264264
</p>
265-
<div class="docstring"><p>Merges two keywords lists into one. If they have duplicated
265+
<div class="docstring"><p>Merges two keyword lists into one. If they have duplicated
266266
entries, the given function is invoked to solve conflicts.</p>
267267

268268
<h2>Examples</h2>
@@ -278,7 +278,7 @@ <h2>Examples</h2>
278278
<p class="signature" id="new/0">
279279
<strong>new()</strong>
280280
</p>
281-
<div class="docstring"><p>Returns an empty keywords list, i.e. an empty list.</p>
281+
<div class="docstring"><p>Returns an empty keyword list, i.e. an empty list.</p>
282282
</div>
283283
<a href="https://github.com/elixir-lang/elixir/blob/master/lib/elixir/lib/keyword.ex#L32" target="_blank" class="view_source">Source</a>
284284
</div><div class="detail">

docs/master/Mix.Utils.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ <h2>Examples</h2>
153153
<p class="signature" id="config_merge/2">
154154
<strong>config_merge(old, new)</strong>
155155
</p>
156-
<div class="docstring"><p>Merges two configs recursively, merging keywords lists
156+
<div class="docstring"><p>Merges two configs recursively, merging keyword lists
157157
and concatenating normal lists.</p>
158158
</div>
159159
<a href="https://github.com/elixir-lang/elixir/blob/master/lib/mix/lib/mix/utils.ex#L102" target="_blank" class="view_source">Source</a>

docs/stable/Code.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ <h2>Examples</h2>
252252
</code></pre>
253253

254254
<p>When passing the <strong>ENV</strong>&#39;s file and line, we could simply get
255-
the location which already returns both fields as a keywords lists:</p>
255+
the location which already returns both fields as a keyword lists:</p>
256256

257257
<pre><code>Code.eval &quot;a + b&quot;, [a: 1, b: 2], __ENV__.location
258258
#=&gt; { 3, [ {:a, 1}, {:b, 2} ] }
@@ -285,7 +285,7 @@ <h2>Examples</h2>
285285
</code></pre>
286286

287287
<p>When passing the <strong>ENV</strong>&#39;s file and line, we could simply get
288-
the location which already returns both fields as a keywords lists:</p>
288+
the location which already returns both fields as a keyword lists:</p>
289289

290290
<pre><code>Code.eval_quoted contents, [a: 1, b: 2], __ENV__.location
291291
#=&gt; { 3, [ {:a, 1}, {:b, 2} ] }

docs/stable/Keyword.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -138,8 +138,8 @@ <h2>Functions</h2>
138138
<p class="signature" id="delete/2">
139139
<strong>delete(keywords, key)</strong>
140140
</p>
141-
<div class="docstring"><p>Deletes all entries in the keywords list for a specific key.
142-
If the key does not exist, returns the keywords list unchanged.
141+
<div class="docstring"><p>Deletes all entries in the keyword list for a specific key.
142+
If the key does not exist, returns the keyword list unchanged.
143143
Use <code>delete_first</code> to delete just the first entry in case of
144144
duplicated keys.</p>
145145

@@ -225,7 +225,7 @@ <h3>Examples</h3>
225225
<p class="signature" id="keys/1">
226226
<strong>keys(keywords)</strong>
227227
</p>
228-
<div class="docstring"><p>Returns all keys from the keywords list. Duplicated
228+
<div class="docstring"><p>Returns all keys from the keyword list. Duplicated
229229
keys appear duplicated in the final list of keys.</p>
230230

231231
<h2>Examples</h2>
@@ -238,7 +238,7 @@ <h2>Examples</h2>
238238
<p class="signature" id="merge/2">
239239
<strong>merge(d1, d2)</strong>
240240
</p>
241-
<div class="docstring"><p>Merges two keywords lists into one. If they have duplicated
241+
<div class="docstring"><p>Merges two keyword lists into one. If they have duplicated
242242
entries, the one given as second argument wins.</p>
243243

244244
<h2>Examples</h2>
@@ -252,7 +252,7 @@ <h2>Examples</h2>
252252
<p class="signature" id="merge/3">
253253
<strong>merge(d1, d2, fun)</strong>
254254
</p>
255-
<div class="docstring"><p>Merges two keywords lists into one. If they have duplicated
255+
<div class="docstring"><p>Merges two keyword lists into one. If they have duplicated
256256
entries, the given function is invoked to solve conflicts.</p>
257257

258258
<h2>Examples</h2>
@@ -268,7 +268,7 @@ <h2>Examples</h2>
268268
<p class="signature" id="new/0">
269269
<strong>new()</strong>
270270
</p>
271-
<div class="docstring"><p>Returns an empty keywords list, i.e. an empty list.</p>
271+
<div class="docstring"><p>Returns an empty keyword list, i.e. an empty list.</p>
272272
</div>
273273
<a href="https://github.com/elixir-lang/elixir/blob/master/lib/elixir/lib/keyword.ex#L32" target="_blank" class="view_source">Source</a>
274274
</div><div class="detail">

docs/stable/Mix.Utils.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ <h2>Examples</h2>
153153
<p class="signature" id="config_merge/2">
154154
<strong>config_merge(old, new)</strong>
155155
</p>
156-
<div class="docstring"><p>Merges two configs recursively, merging keywords lists
156+
<div class="docstring"><p>Merges two configs recursively, merging keyword lists
157157
and concatenating normal lists.</p>
158158
</div>
159159
<a href="https://github.com/elixir-lang/elixir/blob/master/lib/mix/lib/mix/utils.ex#L102" target="_blank" class="view_source">Source</a>

0 commit comments

Comments
 (0)