summary refs log tree commit diff
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2024-03-02 05:49:25 +0300
committerFrederick Muriuki Muriithi2024-03-02 05:49:25 +0300
commit253fab4e6e27b7cc2b230480a44ef945851e5054 (patch)
tree8cb075f097bafa50338c71a4eec41668dc49b6d3
parent9a49b594faa0c84c9752167fe5edd7876460ed71 (diff)
downloadgn-gemtext-253fab4e6e27b7cc2b230480a44ef945851e5054.tar.gz
formatting: Replace horizontal ellipsis with vertical ellipsis.
-rw-r--r--issues/gn-auth/registration.gmi8
1 files changed, 4 insertions, 4 deletions
diff --git a/issues/gn-auth/registration.gmi b/issues/gn-auth/registration.gmi
index 57438ac..5a0f03d 100644
--- a/issues/gn-auth/registration.gmi
+++ b/issues/gn-auth/registration.gmi
@@ -53,20 +53,20 @@ The cd container is built with the following options:
 
 ```
 container_script=$(guix system container --network \
-			…
+			︙
                         --share=/export/data/genenetwork-xapian \
                         --share=/export/data/genenetwork-sqlite \
-			…
+			︙
 ```
 
 meanwhile the test1 container is built with:
 
 ```
 container_script=$(guix system container \
-			…
+			︙
                         --expose=/export/data/genenetwork-xapian \
                         --share=/export/data/genenetwork-sqlite \
-			…
+			︙
 ```
 
 `--share` option allows read-write access within the container, while `--expose` just allows read access. From the snippets above, we see that the "genenetwork-sqlite" folder should (ideally) be writable from both systems.