agate

Simple gemini server for static files
git clone https://github.com/mbrubeck/agate.git
Log | Files | Refs | README

commit b7ffece867bc68d0ebecc50c52fe19fedd53fab7
parent 3f5d322eea8962d79ccad988b060304726021516
Author: Johann150 <johann.galle@protonmail.com>
Date:   Sat, 27 Feb 2021 20:12:58 +0100

correct help text

Diffstat:
Msrc/main.rs | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/main.rs b/src/main.rs @@ -94,7 +94,7 @@ fn args() -> Result<Args> { opts.optopt( "", "content", - "Root of the content directory (default ./content)", + "Root of the content directory (default ./content/)", "DIR", ); opts.optopt( @@ -124,11 +124,11 @@ fn args() -> Result<Args> { opts.optopt( "", "lang", - "RFC 4646 Language code(s) for text/gemini documents", + "RFC 4646 Language code for text/gemini documents", "LANG", ); opts.optflag("s", "silent", "Disable logging output"); - opts.optflag("h", "help", "Print this help menu"); + opts.optflag("h", "help", "Print this help menu and exit."); opts.optflag( "3", "only-tls13",