Skip to content
This repository was archived by the owner on Oct 9, 2018. It is now read-only.

Commit 9c4a24e

Browse files
committed
Fix typos in style/naming and functions-and-methods
1 parent 84b75a5 commit 9c4a24e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

features/functions-and-methods/convenience.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ coherent sets of convenience methods that are easy to remember:
3535
* _Coherent_: Look for small groups of convenience methods that make sense to
3636
include together. For example, the `Path` API mentioned above includes a small
3737
selection of the most common filesystem operations that take a `Path`
38-
argument. If one convenience method strongly suggests the existence others,
38+
argument. If one convenience method strongly suggests the existence of others,
3939
consider adding the whole group.
4040
* _Memorable_: It is not worth saving a few characters of typing if you have to
4141
look up the name of a convenience method every time you use it. Add

style/naming.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ Iterators require introducing and exporting new types. These types should use
126126
the following naming convention:
127127

128128
* **Base name**. If the iterator yields something that can be described with a
129-
specific noun, the base name shoudl be the pluralization of that noun
129+
specific noun, the base name should be the pluralization of that noun
130130
(e.g. an iterator yielding words is called `Words`). Generic contains use the
131131
base name `Items`.
132132

0 commit comments

Comments
 (0)