Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tutorial/01-tutorial.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion tutorial/02-tutorial.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@
(scroll-to (window body) 0 (height body))))))))

(defun start-tutorial ()
"Start turtorial."
"Start tutorial."
(initialize 'on-new-window)
(open-browser))
2 changes: 1 addition & 1 deletion tutorial/03-tutorial.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -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))
2 changes: 1 addition & 1 deletion tutorial/24-tutorial.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -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))")))

Expand Down