From 65f12dcaab61c79a4d5072e49d29edf229e3b9bd Mon Sep 17 00:00:00 2001 From: Nick Cameron Date: Thu, 15 Oct 2015 15:12:37 +1300 Subject: [PATCH] link ctor -> builder --- README.md | 7 +++++-- idioms/ctor.md | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 93d4e3a..a2bc39d 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,10 @@ language. ## Contributing +Contributions are very welcome! + You should start with [the template](template.md). Copy it into the appropriate directory, edit it, and submit a PR. You might not want every section, and you -might want to add extra sections. Correction and elaboration PRs are also very -welcome. +might want to add extra sections. + +Correction and elaboration PRs are very welcome. diff --git a/idioms/ctor.md b/idioms/ctor.md index 623863d..2f876e9 100644 --- a/idioms/ctor.md +++ b/idioms/ctor.md @@ -33,5 +33,5 @@ impl Vec { ## See also -The builder pattern for constructing objects where there are multiple +The [builder pattern](../patterns/builder.md) for constructing objects where there are multiple configurations.