fix: misspelling of "tutorial" in various files

Similar to #399 but that merge missed some.
This commit is contained in:
proehlen 2025-07-06 22:15:19 +07:00
parent 152d765c6e
commit 6911c52c0a
4 changed files with 4 additions and 4 deletions

View file

@ -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)

View file

@ -36,6 +36,6 @@
(scroll-to (window body) 0 (height body))))))))
(defun start-tutorial ()
"Start turtorial."
"Start tutorial."
(initialize 'on-new-window)
(open-browser))

View file

@ -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))

View file

@ -97,7 +97,7 @@
(create-web-code main :content
";; This is a code block<br>
(defun start-tutorial ()<br>
\"Start turtorial.\"<br>
\"Start tutorial.\"<br>
(initialize 'on-new-window)<br>
(open-browser))")))