From acd1c1b6408687ed75600027032535b50672d886 Mon Sep 17 00:00:00 2001 From: ckant787 <43432817+ckant787@users.noreply.github.com> Date: Sat, 12 Jan 2019 11:53:06 +0530 Subject: [PATCH] Update constructors.md --- doc/src/manual/constructors.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/src/manual/constructors.md b/doc/src/manual/constructors.md index 9f41acac6c340..bd041a0a0499b 100644 --- a/doc/src/manual/constructors.md +++ b/doc/src/manual/constructors.md @@ -22,7 +22,7 @@ julia> foo.baz ``` For many types, forming new objects by binding their field values together is all that is ever -needed to create instances. However, in some cases more functionality is required when +needed to create instances. However, in some cases, more functionality is required when creating composite objects. Sometimes invariants must be enforced, either by checking arguments or by transforming them. [Recursive data structures](https://en.wikipedia.org/wiki/Recursion_%28computer_science%29#Recursive_data_structures_.28structural_recursion.29), especially those that may be self-referential, often cannot be constructed cleanly without first