diff options
author | Paul A. Patience <paul@apatience.com> | 2022-01-10 00:38:12 -0500 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2022-01-12 07:24:49 -0800 |
commit | df49a0adefd929a6a77cf81c0adcdbd7157fcbb7 (patch) | |
tree | 0040a04689acd8b75aac3ae3b5137578430af600 | |
parent | a4fe85e6df2e308241984294a3d35353d7cc083a (diff) | |
download | txr-df49a0adefd929a6a77cf81c0adcdbd7157fcbb7.tar.gz txr-df49a0adefd929a6a77cf81c0adcdbd7157fcbb7.tar.bz2 txr-df49a0adefd929a6a77cf81c0adcdbd7157fcbb7.zip |
doc: clarify example in copy-struct description.
* txr.1: The sample copy method given in the description of
copy-struct looks like it could be a special structure function
that would be taken into account by the copy function. It is not.
-rw-r--r-- | txr.1 | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -30227,7 +30227,12 @@ method similar to the following: my-copy)) .brev -since this logic is generic, it can be placed in a base +which can then be invoked on whatever object needs copying. +(Note that this method is not a special structure function, and is thus +not taken into account by the +.code copy +function.) +Since this logic is generic, it can be placed in a base method. The .code copied method which it calls is the means by which the new object is notified that it |