From ebda3e96a3d1e2c82facbea77876554d2d3ee877 Mon Sep 17 00:00:00 2001 From: Tpt Date: Sat, 18 Mar 2023 14:30:37 +0100 Subject: [PATCH] Server: typos in documentation --- server/src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/src/main.rs b/server/src/main.rs index b1a920f0..cec53526 100644 --- a/server/src/main.rs +++ b/server/src/main.rs @@ -95,7 +95,7 @@ enum Command { /// /// If you want to move your data to another RDF storage system, you should use the dump operation instead. Backup { - /// Directory to backup to. + /// Directory in which the backup will be written. #[arg(short, long)] destination: PathBuf, }, @@ -195,7 +195,7 @@ enum Command { /// Optimizes the database storage. /// /// Done by default in the background when serving requests. - /// It is likely to not be useful in most of cases except if you provide a read-only SPARQL endpoint under heavy oad. + /// It is likely to not be useful in most of cases except if you provide a read-only SPARQL endpoint under heavy load. Optimize {}, }