From ecc73e73dabbfabddeabbbdc011f2f07c917e3ab Mon Sep 17 00:00:00 2001 From: Martin Koudelka <42440351+v-makoud@users.noreply.github.com> Date: Tue, 11 Dec 2018 13:36:29 +0100 Subject: [PATCH] CC86610: Fixing inline field name Hello, @mairaw, @BillWagner, @mikeblome, This proposed file change comes from https://github.com/dotnet/docs.ja-jp/pull/182 . Could you review this contribution and help to merge if agreed? Many thanks in advance. --- docs/csharp/language-reference/keywords/class.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/csharp/language-reference/keywords/class.md b/docs/csharp/language-reference/keywords/class.md index 9ac067f9e1fc3..d983625738c09 100644 --- a/docs/csharp/language-reference/keywords/class.md +++ b/docs/csharp/language-reference/keywords/class.md @@ -89,7 +89,7 @@ Accessing private members of `Child` from `Main` would only be possible if `Main Types declared inside a class without an access modifier default to `private`, so the data members in this example would still be `private` if the keyword were removed. -Finally, notice that for the object created using the default constructor (`child3`), the age field was initialized to zero by default. +Finally, notice that for the object created using the default constructor (`child3`), the `age` field was initialized to zero by default. ## C# language specification