Skip to content
This repository has been archived by the owner on Aug 30, 2021. It is now read-only.

Commit

Permalink
Fix some things in the example.
Browse files Browse the repository at this point in the history
  • Loading branch information
skeeto committed May 26, 2011
1 parent ac9ac73 commit ce9336a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions example.el
@@ -1,6 +1,6 @@
(require 'fakespace)

;; Start be declaring a package. `defpackage' currently supports :use
;; Start by declaring a package. `defpackage' currently supports :use
;; and :export. Any libraries listed in :use will be `require'd. You
;; can make your own calls to require, but they should generally occur
;; *before* your `defpackage'. Otherwise the symbols defined in the
Expand All @@ -13,8 +13,8 @@
;; Caveat: any functions or variables you declare *will* be defined in
;; the main namespace (we're faking namespaces here), but the
;; non-exported symbols will be removed afterward. The same functions
;; and variables can be redefined elsewhere without interfering with
;; the definitions here.
;; and variables can be redefined elsewhere outside this package
;; without interfering with the definitions here.

(defvar my-var 100
"A hidden variable.")
Expand Down

0 comments on commit ce9336a

Please sign in to comment.