Skip to content

Commit

Permalink
Fix :AROUND method description
Browse files Browse the repository at this point in the history
  • Loading branch information
phoe committed May 9, 2020
1 parent 30d6b79 commit 1df27b9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions koans-solved/std-method-comb.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

;;; In addition to :BEFORE and :AFTER methods is also possible to write :AROUND
;;; methods, whose code executes around the primary method. In such context, it
;;; methods, which execute instead of the primary methods. In such context, it
;;; is possible to call the primary method via CALL-NEXT-METHOD.
;;; In the standard method combination, the :AFTER method, if one exists, is
;;; In the standard method combination, the :AROUND method, if one exists, is
;;; executed first, and it may choose whether and how to call next methods.

(defgeneric grab-lollipop ()
Expand Down
4 changes: 2 additions & 2 deletions koans/std-method-comb.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

;;; In addition to :BEFORE and :AFTER methods is also possible to write :AROUND
;;; methods, whose code executes around the primary methods. In such context, it
;;; methods, which execute instead of the primary methods. In such context, it
;;; is possible to call the primary method via CALL-NEXT-METHOD.
;;; In the standard method combination, the :AFTER method, if one exists, is
;;; In the standard method combination, the :AROUND method, if one exists, is
;;; executed first, and it may choose whether and how to call next methods.

(defgeneric grab-lollipop ()
Expand Down

0 comments on commit 1df27b9

Please sign in to comment.