From 6911c52c0a7a001ee60c62c53d4d104c0738532a Mon Sep 17 00:00:00 2001 From: proehlen Date: Sun, 6 Jul 2025 22:15:19 +0700 Subject: [PATCH] fix: misspelling of "tutorial" in various files Similar to #399 but that merge missed some. --- tutorial/01-tutorial.lisp | 2 +- tutorial/02-tutorial.lisp | 2 +- tutorial/03-tutorial.lisp | 2 +- tutorial/24-tutorial.lisp | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/tutorial/01-tutorial.lisp b/tutorial/01-tutorial.lisp index fe50ffa..eb570b6 100644 --- a/tutorial/01-tutorial.lisp +++ b/tutorial/01-tutorial.lisp @@ -34,7 +34,7 @@ ;;; exist, take a look through the CLOG manual or the file clog-element.lisp (defun start-tutorial () ; Define the function called start-tutorial - "Start turtorial." ; Optional docstring to describe function + "Start tutorial." ; Optional docstring to describe function ;; Initialize the CLOG system (initialize #'on-new-window) diff --git a/tutorial/02-tutorial.lisp b/tutorial/02-tutorial.lisp index 5912a27..7261de5 100644 --- a/tutorial/02-tutorial.lisp +++ b/tutorial/02-tutorial.lisp @@ -36,6 +36,6 @@ (scroll-to (window body) 0 (height body)))))))) (defun start-tutorial () - "Start turtorial." + "Start tutorial." (initialize 'on-new-window) (open-browser)) diff --git a/tutorial/03-tutorial.lisp b/tutorial/03-tutorial.lisp index a3cd607..7f4add9 100644 --- a/tutorial/03-tutorial.lisp +++ b/tutorial/03-tutorial.lisp @@ -31,6 +31,6 @@ ;;; But... notice what happens once syncing is on the next event doesn't hit until ;;; SLEEP returns. (defun start-tutorial () - "Start turtorial." + "Start tutorial." (initialize 'on-new-window) (open-browser)) diff --git a/tutorial/24-tutorial.lisp b/tutorial/24-tutorial.lisp index a6ef45f..6c51ee6 100644 --- a/tutorial/24-tutorial.lisp +++ b/tutorial/24-tutorial.lisp @@ -97,7 +97,7 @@ (create-web-code main :content ";; This is a code block
(defun start-tutorial ()
- \"Start turtorial.\"
+ \"Start tutorial.\"
(initialize 'on-new-window)
(open-browser))")))