From 56ba57511b0e6ced0785fb40e08d2444f7cfea35 Mon Sep 17 00:00:00 2001 From: Mike Gerwitz Date: Mon, 9 May 2011 18:33:44 -0400 Subject: [PATCH] Minor doc corrections for static implementation --- doc/impl-details.texi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/impl-details.texi b/doc/impl-details.texi index b00246c..c142a35 100644 --- a/doc/impl-details.texi +++ b/doc/impl-details.texi @@ -190,7 +190,7 @@ does this mean? Consider two classes: @var{Foo} and @var{SubFoo}, the latter of which inherits from the former. @var{Foo} defines a static property @var{count} to be incremented each time the class is instantiated. The subtype @var{SubFoo}, when instantiated (assuming the constructor is not overridden), would increment -that very same count. Therefore, we can represent this by static that +that very same count. Therefore, we can represent this by stating that @samp{Foo.count === SubFoo.count}. In the example below, we demonstrate this concept in pseudocode: @@ -333,7 +333,7 @@ implementation does provide a number key benefits: @itemize @item It provides an implementation that is @emph{consistent with other -Object-Oriented languages}. This is the most important point! +Object-Oriented languages}. This is the most important point. @item The accessor method parameter style is common in other frameworks like jQuery.