Commit 7b35da92 authored by Robert Goldman's avatar Robert Goldman
Browse files

Documentation patch from Russell Carter.

Improve the example of `define-package`: previously it did not
emphasize the importance of `:use common-lisp`.  It wasn't wrong, but
it wasn't as helpful as it could be.
parent 60175495
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -2131,7 +2131,7 @@ ASDF will compute dependencies from the

@example
(uiop:define-package :my-lib/interface/order
  (:use :closer-common-lisp
  (:use :cl :closer-mop)
   :my-lib/interface/definition
   :my-lib/interface/base)
  (:mix :fare-utils :uiop :alexandria)
@@ -2152,7 +2152,7 @@ context. For example:
@example
(uiop:define-package :my-lib/interface/all
  (:nicknames :my-lib-interface)
  (:use :closer-common-lisp)
  (:use :cl :closer-mop)
  (:mix :fare-utils :uiop :alexandria)
  (:use-reexport
   :my-lib/interface/definition