Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

README typo #108

Open
awb99 opened this issue Oct 25, 2023 · 1 comment
Open

README typo #108

awb99 opened this issue Oct 25, 2023 · 1 comment

Comments

@awb99
Copy link

awb99 commented Oct 25, 2023

In the Readme, the Filestore example is wrong.
It uses konserve.memory,
but should say konserve.filestore

incorrect:

(ns test-db
  (:require [konserve.memory :refer [connect-fs-store]]
            [konserve.core :as k]))

(def my-folder "path/to/folder")
(def my-db (connect-fs-store my-folder))

correct:

(ns test-db
  (:require [konserve.filestore :refer [connect-fs-store]]
            [konserve.core :as k]))

(def my-folder "path/to/folder")
(def my-db (connect-fs-store my-folder))
@whilo
Copy link
Member

whilo commented Oct 25, 2023

Good catch! Feel free to file a PR.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants