Strunk would be proud.

This commit is contained in:
Kyle Marek-Spartz
2014-02-17 13:56:41 -06:00
parent 4eead2b611
commit 9a566e8203
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
^title Classes
Every value in Wren is an object, and every object is an instance of a class.
Even `true` and `false` are full-featured objects — instances of the `Bool` class.
Even `true` and `false` are full-featured objects—instances of the `Bool` class.
Classes contain both *behavior* and *state*. Behavior is defined in *methods* which are stored in the class. State is defined in *fields*, whose values are stored in each instance.