From 1dc43d57cc4f35bb67c175517554ce774ce339c2 Mon Sep 17 00:00:00 2001 From: Neil Jerram Date: Mon, 6 Dec 2010 20:24:58 +0000 Subject: [PATCH] Minor textual markups * doc/ref/goops-tutorial.texi (Class definition): No reason to assume particular familiarity with CLOS. (Instance creation and slot access): Remove a couple of words. --- doc/ref/goops-tutorial.texi | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/doc/ref/goops-tutorial.texi b/doc/ref/goops-tutorial.texi index 28ab86875..52b293122 100644 --- a/doc/ref/goops-tutorial.texi +++ b/doc/ref/goops-tutorial.texi @@ -49,8 +49,7 @@ module. You can do this at the Guile REPL by evaluating: @node Class definition @subsection Class definition -A new class is defined with the @code{define-class} macro. The syntax -of @code{define-class} is close to CLOS @code{defclass}: +A new class is defined with the @code{define-class} syntax: @findex define-class @cindex class @@ -95,12 +94,12 @@ superclass of @code{}, and @code{} is the superclass of @node Instance creation and slot access @subsection Instance creation and slot access -Creation of an instance of a previously defined -class can be done with the @code{make} procedure. This -procedure takes one mandatory parameter which is the class of the -instance which must be created and a list of optional -arguments. Optional arguments are generally used to initialize some -slots of the newly created instance. For instance, the following form +Creation of an instance of a previously defined class can be done with +@code{make}. This procedure takes one mandatory parameter which is the +class of the instance which must be created, and a list of optional +arguments. Optional arguments are generally used to initialize some of +the slots of the newly created instance. For instance, the following +form @findex make @cindex instance