This repository was archived by the owner on Oct 9, 2018. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
features/functions-and-methods Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ coherent sets of convenience methods that are easy to remember:
35
35
* _ Coherent_ : Look for small groups of convenience methods that make sense to
36
36
include together. For example, the ` Path ` API mentioned above includes a small
37
37
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,
39
39
consider adding the whole group.
40
40
* _ Memorable_ : It is not worth saving a few characters of typing if you have to
41
41
look up the name of a convenience method every time you use it. Add
Original file line number Diff line number Diff line change @@ -126,7 +126,7 @@ Iterators require introducing and exporting new types. These types should use
126
126
the following naming convention:
127
127
128
128
* ** 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
130
130
(e.g. an iterator yielding words is called ` Words ` ). Generic contains use the
131
131
base name ` Items ` .
132
132
You can’t perform that action at this time.
0 commit comments