From db7749983ec2cee4b94324ed5a124b91db90f690 Mon Sep 17 00:00:00 2001 From: Caleb Spain Date: Sat, 3 May 2025 15:32:52 -0500 Subject: [PATCH] Fix grammar in encapsulation sentence ("Member" to "Members") --- docs/csharp/fundamentals/object-oriented/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/csharp/fundamentals/object-oriented/index.md b/docs/csharp/fundamentals/object-oriented/index.md index 976b99ff5b4de..a4069b1da5a58 100644 --- a/docs/csharp/fundamentals/object-oriented/index.md +++ b/docs/csharp/fundamentals/object-oriented/index.md @@ -18,7 +18,7 @@ In C#, the definition of a type—a class, struct, or record—is like a ## Encapsulation - *Encapsulation* is sometimes referred to as the first pillar or principle of object-oriented programming. A class or struct can specify how accessible each of its members is to code outside of the class or struct. Member not intended for consumers outside of the class or assembly are hidden to limit the potential for coding errors or malicious exploits. For more information, see the [Object-oriented programming](../tutorials/oop.md) tutorial. + *Encapsulation* is sometimes referred to as the first pillar or principle of object-oriented programming. A class or struct can specify how accessible each of its members is to code outside of the class or struct. Members not intended for consumers outside of the class or assembly are hidden to limit the potential for coding errors or malicious exploits. For more information, see the [Object-oriented programming](../tutorials/oop.md) tutorial. ## Members