From 06daeaed3ff85570e22f572c4977b8dbc9fa7780 Mon Sep 17 00:00:00 2001 From: cms Date: Fri, 5 Feb 2021 12:06:05 +0000 Subject: [PATCH] fixes typos in tutorial 20 minor edits to spelling and punctuation --- tutorial/20-tutorial.lisp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tutorial/20-tutorial.lisp b/tutorial/20-tutorial.lisp index 6882853..cbb8342 100644 --- a/tutorial/20-tutorial.lisp +++ b/tutorial/20-tutorial.lisp @@ -23,7 +23,7 @@ ;;; Next we will use the clog-unordered-list as the base for our new ;;; class clog-toggler (defclass clog-toggler (clog-unordered-list) () - (:documentation "Toggler object - a collapsable UI component")) + (:documentation "Toggler object - a collapsible UI component")) (defgeneric create-toggler (clog-obj &key class html-id auto-place) (:documentation "Create a toggler.")) @@ -34,8 +34,8 @@ (let ((new-obj (create-unordered-list obj :class class :html-id html-id :auto-place auto-place))) - ;; Using change-class we can reuse the parent clog-unordered-lists's - ;; create method and it's initialization. Otherwise we can use + ;; Using change-class we can re-use the parent clog-unordered-lists's + ;; create method and its initialization. Otherwise we can use ;; create-child and the needed html. (change-class new-obj 'clog-toggler) new-obj)) @@ -69,6 +69,6 @@ (run body)) (defun start-tutorial () - "Start turtorial." + "Start tutorial." (initialize #'on-new-window) (open-browser))