Skip to content

Commit

Permalink
remove references to index-initialize (fixes #2)
Browse files Browse the repository at this point in the history
  • Loading branch information
hanshuebner committed Jun 30, 2012
1 parent 896d29c commit ba79da9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
2 changes: 0 additions & 2 deletions src/indices/package.lisp
Expand Up @@ -9,8 +9,6 @@
#:index-remove
#:index-keys
#:index-values
#:index-initialize
#:index-reinitialize
#:index-clear
#:index-create
#:index-mapvalues
Expand Down
8 changes: 4 additions & 4 deletions src/indices/tutorial.lisp
Expand Up @@ -103,7 +103,7 @@
;;; `HASH-LIST-INDEX'.
;;;
;;; `INDEX-INITARGS' - Additional arguments that are passed to
;;; `INDEX-INITIALIZE' when creating the index.
;;; `INDEX-CREATE' when creating the index.
;;;
;;; `INDEX-READER' - A symbol under which a query function for the
;;; index will be stored.
Expand Down Expand Up @@ -545,9 +545,9 @@
;;;
;;; `INDEX-CLEAR (INDEX)' - Remove all indexed objects from the index.
;;;
;;; In addition to this method, there is the function `INDEX-CREATE'
;;; that instantiates an index object, and calls `INDEX-INITIALIZE' on
;;; it.
;;; In addition to these methods, there is the function `INDEX-CREATE'
;;; that instantiates an index object. It passes the `INDEX-INITARGS'
;;; provided to the `MAKE-INSTANCE' call that creates the index.
;;;
;;; The best way to see how this methods are used is to have at look
;;; at the basic index `SLOT-INDEX'. A unique index indexes an object
Expand Down

0 comments on commit ba79da9

Please sign in to comment.