From d0744ba3e7b60a25837af8350b3af7ef1d2b4548 Mon Sep 17 00:00:00 2001 From: Nils Liberg Date: Sat, 23 May 2015 11:19:11 +0200 Subject: [PATCH] Fix mistake: "to to" -> "to" --- src/doc/style/ownership/builders.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/style/ownership/builders.md b/src/doc/style/ownership/builders.md index 54992341ce54..348be516e374 100644 --- a/src/doc/style/ownership/builders.md +++ b/src/doc/style/ownership/builders.md @@ -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.