Fix mistake: "to to" -> "to"

This commit is contained in:
Nils Liberg 2015-05-23 11:19:11 +02:00 committed by Johannes Oertel
parent 31a007af19
commit d0744ba3e7
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ If `T` is such a data structure, consider introducing a `T` _builder_:
value. When possible, choose a better name: e.g. `Command` is the builder for
`Process`.
2. The builder constructor should take as parameters only the data _required_ to
to make a `T`.
make a `T`.
3. The builder should offer a suite of convenient methods for configuration,
including setting up compound inputs (like slices) incrementally.
These methods should return `self` to allow chaining.