From f5712db5de8a6939dde6174b3cf86fba286a72a4 Mon Sep 17 00:00:00 2001 From: Mike Gerwitz Date: Sat, 28 May 2011 08:48:22 -0400 Subject: [PATCH] Fixed makeinfo warning regarding @var --- doc/classes.texi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/classes.texi b/doc/classes.texi index 8bca2fc..915fe99 100644 --- a/doc/classes.texi +++ b/doc/classes.texi @@ -1287,7 +1287,7 @@ unstable and uninhabitable universe. @caption{Demonstrating late static binding by overriding a static method} @end float -Method @code{BigBang.fromBraneCollision()} calls static method @var{create()}, +Method @code{BigBang.fromBraneCollision()} calls static method @code{create()}, which is overridden by subtype @var{UnstableBigBang}. Because @var{this} is bound when the method is called (``late''), rather than being statically bound to the original @code{create()}, @code{UnstableBigBang.create()} is called. Had