From f5b7ee8821c2f52322cc1d7cb967a6c43b63972b Mon Sep 17 00:00:00 2001 From: Dan Bowling Date: Thu, 20 May 2021 16:25:29 -0600 Subject: [PATCH] Fix typo under Private heading of definitions Fix documentation to specify private methods and properties, rather than protected, with two underscores. --- docs/guides/principles/definitions-and-terms.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/principles/definitions-and-terms.md b/docs/guides/principles/definitions-and-terms.md index e292de2e4..f34127a5e 100644 --- a/docs/guides/principles/definitions-and-terms.md +++ b/docs/guides/principles/definitions-and-terms.md @@ -30,7 +30,7 @@ class SoccerPlayer { ## Private -Methods and properties are protected when they contain two underscores or are explicitly marked as private in the code. They can be only used within the class where they are defined (developers of Lion components). +Methods and properties are private when they contain two underscores or are explicitly marked as private in the code. They can be only used within the class where they are defined (developers of Lion components). ```js class SoccerPlayer {