diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2019-12-31 22:58:01 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2019-12-31 22:58:01 (GMT) |
commit | c4f94adb460fd2389bbf4b3db9befcbfb97dae0b (patch) | |
tree | 8de6a6651f12db3e3b5409c06aca51fc402d01a0 /doc/configurable.n | |
parent | d4b3d3a460efcdaa6f0ef897a6c3e52b3331e421 (diff) | |
download | tcl-c4f94adb460fd2389bbf4b3db9befcbfb97dae0b.zip tcl-c4f94adb460fd2389bbf4b3db9befcbfb97dae0b.tar.gz tcl-c4f94adb460fd2389bbf4b3db9befcbfb97dae0b.tar.bz2 |
Other list-returning [info class] subcommands are plurals, so change property -> properties
Diffstat (limited to 'doc/configurable.n')
-rw-r--r-- | doc/configurable.n | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/configurable.n b/doc/configurable.n index f01f051..9a2a478 100644 --- a/doc/configurable.n +++ b/doc/configurable.n @@ -179,25 +179,25 @@ These slots, and their intended semantics, are: . The set of properties of a class (not including those from its superclasses) that may be read from when configuring an instance of the class. This slot can -also be read with the \fBinfo class property\fR command. +also be read with the \fBinfo class properties\fR command. .TP \fBoo::configuresupport::writableproperties\fR . The set of properties of a class (not including those from its superclasses) that may be written to when configuring an instance of the class. This slot -can also be read with the \fBinfo class property\fR command. +can also be read with the \fBinfo class properties\fR command. .TP \fBoo::configuresupport::objreadableproperties\fR . The set of properties of an object instance (not including those from its classes) that may be read from when configuring the object. This slot can -also be read with the \fBinfo object property\fR command. +also be read with the \fBinfo object properties\fR command. .TP \fBoo::configuresupport::objwritableproperties\fR . The set of properties of an object instance (not including those from its classes) that may be written to when configuring the object. This slot can -also be read with the \fBinfo object property\fR command. +also be read with the \fBinfo object properties\fR command. .PP Note that though these are slots, they are \fInot\fR in the standard \fBoo::define\fR or \fBoo::objdefine\fR namespaces; in order to use them @@ -207,7 +207,7 @@ system, and not directly used by normal user code. .SS "IMPLEMENTATION NOTE" .PP The implementation of the \fBconfigure\fR method uses -\fBinfo object property\fR with the \fB\-all\fR option to discover what +\fBinfo object properties\fR with the \fB\-all\fR option to discover what properties it may manipulate. .SH EXAMPLES .PP |