Removed ambiguous characters
This commit is contained in:
@@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
@defmodule[keystore]
|
@defmodule[keystore]
|
||||||
|
|
||||||
A small persistent key–value store backed by SQLite. Keys and values
|
A small persistent key-value store backed by SQLite. Keys and values
|
||||||
may be arbitrary Racket values and are stored using transparent
|
may be arbitrary Racket values and are stored using transparent
|
||||||
serialization.
|
serialization.
|
||||||
|
|
||||||
@@ -69,7 +69,7 @@ Returns all keys in the store.
|
|||||||
|
|
||||||
@defproc[(ks-key-values [ks keystore?]) (listof (cons/c any/c any/c))]{
|
@defproc[(ks-key-values [ks keystore?]) (listof (cons/c any/c any/c))]{
|
||||||
|
|
||||||
Returns all key–value pairs as cons cells.
|
Returns all key-value pairs as cons cells.
|
||||||
}
|
}
|
||||||
|
|
||||||
@section{Glob Queries}
|
@section{Glob Queries}
|
||||||
@@ -100,7 +100,7 @@ Returns raw key rows in the form:
|
|||||||
|
|
||||||
@defproc[(ks-key-values-raw [ks keystore?]) list?]{
|
@defproc[(ks-key-values-raw [ks keystore?]) list?]{
|
||||||
|
|
||||||
Returns raw key–value rows in the form:
|
Returns raw key-value rows in the form:
|
||||||
|
|
||||||
@racketblock[
|
@racketblock[
|
||||||
(list key-string str-key value-string)
|
(list key-string str-key value-string)
|
||||||
|
|||||||
Reference in New Issue
Block a user