Merge pull request #439 from proehlen/main

fix: misspelling of "tutorial" in various files
This commit is contained in:
David Botton 2025-11-08 23:15:50 -05:00 committed by GitHub
commit c653f63cea
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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))")))