close Warning: Can't synchronize with repository "(default)" (The repository directory has changed, you should resynchronize the repository with: trac-admin $ENV repository resync '(default)'). Look in the Trac log for more information.

Changeset 2836


Ignore:
Timestamp:
2015-06-21T09:55:02-07:00 (9 years ago)
Author:
Marek Rychlik
Message:

* empty log message *

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/f4grobner/ring.lisp

    r2835 r2836  
    159159(defgeneric multiply-by (self other)
    160160  (:method (self other) (r* self other))
    161   (:documentation "Multiply object SELF and OTHER and store the result into SELF.
    162 It returns SELF. For instances of a class, this operation may be destructive."))
     161  (:documentation "Multiply object SELF and OTHER and store the result
     162into SELF.  It returns SELF. For instances of a class, this operation
     163may be destructive."))
    163164
    164165(defgeneric divide-by (self other)
    165166  (:method (self other) (r/ self other))
    166   (:documentation "Divided object SELF by OTHER and store the result into SELF.
    167 It returns SELF. For instances of a class, this operation may be destructive."))
     167  (:documentation "Divided object SELF by OTHER and store the result
     168into SELF.  It returns SELF. For instances of a class, this operation
     169may be destructive."))
    168170
    169171(defgeneric add-to (self other)
Note: See TracChangeset for help on using the changeset viewer.