Skip to content

Commit 2c65a3e

Browse files
authored
Update constructors.md (#47614)
- Improve text
1 parent 167b223 commit 2c65a3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/fsharp/language-reference/members/constructors.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This article describes how to define and use constructors to create and initiali
99

1010
## Construction of class objects
1111

12-
Objects of class types have constructors. There are two kinds of constructors. One is the primary constructor, whose parameters appear in parentheses just after the type name. You specify other, optional additional constructors by using the `new` keyword. Any such additional constructors must call the primary constructor.
12+
Objects of class types have constructors. There are two kinds of constructors. One is the primary constructor, whose parameters appear in parentheses just after the type name. Optionally, you can specify additional constructors by using the `new` keyword. Any such additional constructors must call the primary constructor.
1313

1414
The primary constructor contains `let` and `do` bindings that appear at the start of the class definition. A `let` binding declares private fields and methods of the class; a `do` binding executes code. For more information about `let` bindings in class constructors, see [`let` Bindings in Classes](let-bindings-in-classes.md). For more information about `do` bindings in constructors, see [`do` Bindings in Classes](do-bindings-in-classes.md).
1515

0 commit comments

Comments
 (0)