fix(memory): correct unclosed string in history-store docstring

This commit is contained in:
2026-04-28 18:59:09 -04:00
parent d078069a1a
commit b8b9b2c9f9

View File

@@ -23,7 +23,7 @@ The `*memory*` is the global hash table that holds every Org element by its uniq
(defvar *memory* (make-hash-table :test 'equal))
(defvar *history-store* (make-hash-table :test 'equal)
"Immutable Merkle-Tree versioning store mapping hashes to objects.
"Immutable Merkle-Tree versioning store mapping hashes to objects.")
#+end_src
** The Data Structure (org-object)