From 6b4dc2980da07b41176d0bdf2f231d9ae54b3bf0 Mon Sep 17 00:00:00 2001 From: Authrus Date: Tue, 5 Feb 2019 20:44:41 +0000 Subject: [PATCH] Update documentation --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 10651d22..eedc7a56 100644 --- a/README.md +++ b/README.md @@ -931,7 +931,7 @@ class Square extends Shape { } ``` -By default functions defined in the body of a class are public. This means any code where an instance +By default functions defined in the body of a class are public. This means any scope where an instance of the class is accessible can call this public method. The opposite is true for private methods. Private method can be called only within the body of the class.