You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/classes.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -118,7 +118,7 @@ As always these modifiers work for both member properties and member functions.
118
118
### Abstract
119
119
`abstract` can be thought of as an access modifier. We present it separately because opposed to the previously mentioned modifiers it can be on a `class` as well as any member of the class. Having an `abstract` modifier primarily means that such functionality *cannot be directly invoked* and a child class must provide the functionality.
120
120
121
-
*`abstract`**classes** cannot be directly instantiated. Instead the user must create some `class` that inherit from the `abstract class`.
121
+
*`abstract`**classes** cannot be directly instantiated. Instead the user must create some `class` that inherits from the `abstract class`.
122
122
*`abstract`**members** cannot be directly accessed and a child class must provide the functionality.
0 commit comments