From e515edf0339ff08b0a2efb0537792d1d40bcd47b Mon Sep 17 00:00:00 2001 From: David Botton Date: Wed, 29 Dec 2021 15:58:20 -0500 Subject: [PATCH] Fix comment to correct package name --- tutorial/01-tutorial.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorial/01-tutorial.lisp b/tutorial/01-tutorial.lisp index 4d5f5e6..2c2f8fa 100644 --- a/tutorial/01-tutorial.lisp +++ b/tutorial/01-tutorial.lisp @@ -2,7 +2,7 @@ (:use #:cl #:clog) ; Use the Common Lisp language and CLOG (:export start-tutorial)) ; Export as public the start-tutorial function -(in-package :clog-tut-1) ; Tell the "reader" we are in the clog-user package +(in-package :clog-tut-1) ; Tell the "reader" we are in the clog-tut-1 package ;; Define our CLOG application