Removed ambiguous characters

This commit is contained in:
2026-04-17 22:49:33 +02:00
parent 73a80ae3d6
commit 4ab6f539a1

View File

@@ -10,7 +10,7 @@
@defmodule[keystore/class]
An object-oriented wrapper around @racketmodname[keystore]. It provides
a small class interface to the persistent keyvalue store.
a small class interface to the persistent key-value store.
@defclass[keystore% object% ()]{
@@ -56,7 +56,7 @@ Returns keys matching @racket[pattern].
@defmethod[(glob-kv [pattern string?]) (listof (cons/c any/c any/c))]{
Returns keyvalue pairs matching @racket[pattern].
Returns key=value pairs matching @racket[pattern].
}
@defmethod[(keys-glob [pattern string?]) (listof any/c)]{
@@ -71,7 +71,7 @@ Returns all keys.
@defmethod[(key-values) (listof (cons/c any/c any/c))]{
Returns all keyvalue pairs.
Returns all key-value pairs.
}
}