From da3eac9a48bd2abc550352a5faebfea14ed36ab9 Mon Sep 17 00:00:00 2001 From: "Anthony M. Cook" Date: Fri, 20 Nov 2015 12:56:27 -0600 Subject: [PATCH] Fixing a couple of typos in the classes docs. --- doc/site/classes.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/site/classes.markdown b/doc/site/classes.markdown index 26ece8e5..b6542609 100644 --- a/doc/site/classes.markdown +++ b/doc/site/classes.markdown @@ -216,7 +216,7 @@ constructors, etc. ## Fields -All state stored in instances is stored in *fields*. Each field has a named +All state stored in instances is stored in *fields*. Each field has a name that starts with an underscore. :::wren @@ -393,7 +393,7 @@ This means you can do `super` calls inside a constructor: **TODO: Integrate better into page. Should explain this before mentioning super above.** -Sometimes you want to invoke a method on yourself, but only methods defined in +Sometimes you want to invoke a method on yourself, but using methods defined in one of your [superclasses](classes.html#inheritance). You typically do this in an overridden method when you want to access the original method being overridden.