diff --git a/scrbl/class.scrbl b/scrbl/class.scrbl index 93024ef..fa6972c 100644 --- a/scrbl/class.scrbl +++ b/scrbl/class.scrbl @@ -10,7 +10,7 @@ @defmodule[keystore/class] An object-oriented wrapper around @racketmodname[keystore]. It provides -a small class interface to the persistent key–value 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 key–value 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 key–value pairs. +Returns all key-value pairs. } }