about summary refs log tree commit diff
diff options
context:
space:
mode:
authorsternenseemann <git@lukasepple.de>2020-05-13 22:55:24 +0200
committersternenseemann <git@lukasepple.de>2020-05-13 22:55:24 +0200
commit33e23817482a4b4c61c5f29a58d1294db48fc54f (patch)
tree325ce710b8d065f02c3ace03b1203e13885706ce
parent9b579569d995243eba89b1c089602b414c9da718 (diff)
Typo fix
-rw-r--r--README.md2
-rw-r--r--src/GopherProxy/Params.hs2
2 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 44ccc4e..94e461e 100644
--- a/README.md
+++ b/README.md
@@ -17,7 +17,7 @@ These are all optional flags which allow to change default behavior:
 * `--css-url`: The http path of the css file, defaults to `/gopher-proxy.css` (should be changed, if your gopher server has a file with the same name
 * `--base-url`: The path of the directory which will appear as root directory of gopher-proxy to the user, defaults to `/`. Should be changed if you configured your proxying web server to expose gopher-proxy as, say `/gopher-space/`.
 * `--listen-public`: If this flag is set, gopher-proxy will accept connections on its public IP address(es).
-* `--default-mime-type`: Mime type to use if spacecookie can't guess it, defaults to "application/octet-stream"
+* `--default-mime-type`: Mime type to use if gopher-proxy can't guess it, defaults to "application/octet-stream"
 * `--timeout`: connection timeout in milliseconds, defaults to 10 seconds.
 * `--server-name`: The server name of the server to proxy, defaults to the host name. This value is used to detect wether a menu item is pointing to another gopher server than the proxied one. This is particularly useful, if you use e. g. `127.0.0.1` instead of the public host name.
 * `--title`: Sets the first part of the HTML title-tag, defaults to `gopher-proxy`.
diff --git a/src/GopherProxy/Params.hs b/src/GopherProxy/Params.hs
index 25dca1d..72a6991 100644
--- a/src/GopherProxy/Params.hs
+++ b/src/GopherProxy/Params.hs
@@ -65,7 +65,7 @@ params = Params
   <*> optionalWithDefault defaultMimeType (option auto
     (long "default-mime-type"
     <> metavar "MIMETYPE"
-    <> help "spacecookie uses this mimetype, if it can't guess the type, defaults to application/octet-stream"))
+    <> help "gopher-proxy uses this mimetype, if it can't guess the type, defaults to application/octet-stream"))
   <*> optionalWithDefault 10000000 (option auto
     (long "timeout"
     <> metavar "MILLISECONDS"