diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2012-03-11 17:03:00 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2012-03-11 17:03:00 (GMT) |
commit | c93c3a3b39929c9a7f1c816f4dc8a058f9eea85c (patch) | |
tree | 505d98c9c1a78785f5425cbf44b19004b4d49516 /doc/object.n | |
parent | 014ce74e1d7d90d99e3b310e2e4a923f789802a2 (diff) | |
download | tcl-c93c3a3b39929c9a7f1c816f4dc8a058f9eea85c.zip tcl-c93c3a3b39929c9a7f1c816f4dc8a058f9eea85c.tar.gz tcl-c93c3a3b39929c9a7f1c816f4dc8a058f9eea85c.tar.bz2 |
A number of small spelling and wording fixes in the docs.
Diffstat (limited to 'doc/object.n')
-rw-r--r-- | doc/object.n | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/object.n b/doc/object.n index 0640580..96a1bfb 100644 --- a/doc/object.n +++ b/doc/object.n @@ -40,7 +40,7 @@ current namespace whenever a method of the object is invoked (including a method of the class of the object). When the object is destroyed, its instance namespace is deleted. The instance namespace contains the object's \fBmy\fR command, which may be used to invoke non-exported methods of the object or to -create a reference to the object for the purpose of invokation which persists +create a reference to the object for the purpose of invocation which persists across renamings of the object. .SS CONSTRUCTOR The \fBoo::object\fR class does not define an explicit constructor. @@ -69,7 +69,7 @@ associated with \fIobj\fR, returning the result of the evaluation. . This method is called when an attempt to invoke the method \fImethodName\fR on object \fIobj\fR fails. The arguments that the user supplied to the method are -given as \fIarg\fR argments. The default implementation (i.e. the one defined +given as \fIarg\fR arguments. The default implementation (i.e. the one defined by the \fBoo::object\fR class) generates a suitable error, detailing what methods the object supports given whether the object was invoked by its public name or through the \fBmy\fR command. |