From d0fb76017cc42c19778e16ea7d7c904b79fd4cef Mon Sep 17 00:00:00 2001 From: cms Date: Fri, 5 Feb 2021 12:08:11 +0000 Subject: [PATCH] fixes for typos in tutorial 21 minor corrections --- tutorial/21-tutorial.lisp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tutorial/21-tutorial.lisp b/tutorial/21-tutorial.lisp index 70251b4..05987b3 100644 --- a/tutorial/21-tutorial.lisp +++ b/tutorial/21-tutorial.lisp @@ -11,11 +11,11 @@ (in-package :clog-drop-list) ;;; Next we will use the clog-unordered-list as the base for our new -;;; class clog-drop list and allow access to the "drop root" for +;;; class clog-drop-list and allow access to the "drop-root" for ;;; list items to be children of. (defclass clog-drop-list (clog-unordered-list) ((drop-root :accessor drop-root)) - (:documentation "CLOG Drop List object - a collapsable list component")) + (:documentation "CLOG Drop List object - a collapsible list component")) (defgeneric drop-root (clog-drop-list) (:documentation "Accessor for the drop list root, create clog-list-items @@ -56,6 +56,6 @@ on the drop-root.")) (run body)) (defun start-tutorial () - "Start turtorial." + "Start tutorial." (initialize #'on-new-window) (open-browser))