diff mbox series

[bug#63278,DOCUMENTATION] doc: Update dicod-configuration example

Message ID 87cz3ggmod.fsf@gmail.com
State New
Headers show
Series [bug#63278,DOCUMENTATION] doc: Update dicod-configuration example | expand

Commit Message

Nathaniel Nicandro May 4, 2023, 2:58 p.m. UTC
* doc/guix.texi (Dictionary Service): Update dicod-configuration example to
fix outdated WordNet database configuration.
---
 doc/guix.texi | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)


base-commit: 4884ee6dd4b1694a4a502dd8058d6c61fa0c0199

Comments

Ludovic Courtès May 11, 2023, 1:38 p.m. UTC | #1
Hi,

Nathaniel Nicandro <nathanielnicandro@gmail.com> skribis:

> * doc/guix.texi (Dictionary Service): Update dicod-configuration example to
> fix outdated WordNet database configuration.

Applied, thanks!

Ludo’.
diff mbox series

Patch

diff --git a/doc/guix.texi b/doc/guix.texi
index 46e7fd3908..6a35bf83f8 100644
--- a/doc/guix.texi
+++ b/doc/guix.texi
@@ -114,6 +114,7 @@ 
 Copyright @copyright{} 2023 Giacomo Leidi@*
 Copyright @copyright{} 2022 Antero Mejr@*
 Copyright @copyright{} 2023 Karl Hallsby
+Copyright @copyright{} 2023 Nathaniel Nicandro
 
 Permission is granted to copy, distribute and/or modify this document
 under the terms of the GNU Free Documentation License, Version 1.3 or
@@ -38094,15 +38095,14 @@ 
           (handlers (list
                      (dicod-handler
                       (name "wordnet")
-                      (module "dictorg")
+                      (module "wordnet")
                       (options
-                       (list #~(string-append "dbdir=" #$wordnet))))))
+                       (list #~(string-append "wnhome=" #$wordnet))))))
           (databases (list
                       (dicod-database
                        (name "wordnet")
                        (complex? #t)
-                       (handler "wordnet")
-                       (options '("database=wn")))
+                       (handler "wordnet"))
                       %dicod-database:gcide))))
 @end lisp