Punctuation choices

This commit is contained in:
Kyle Marek-Spartz
2014-02-16 21:56:51 -06:00
parent 6d9842b148
commit 4eead2b611
3 changed files with 6 additions and 6 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.