diff options
author | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2023-08-28 15:59:34 +0200 |
---|---|---|
committer | Paul Cristian Sarbu <paul.cristian.sarbu@huawei.com> | 2023-08-28 16:53:50 +0200 |
commit | 3e4e2b6fcbffe5de62d7c3eab47fdf3987dc778d (patch) | |
tree | 08218491a2a8f1f5885202ab9f6c35bcd6dea95a /share | |
parent | e1fcfc19aa045ae378d983c6c95af2ae64723ea5 (diff) | |
download | justbuild-3e4e2b6fcbffe5de62d7c3eab47fdf3987dc778d.tar.gz |
man: Fix missing quoting of literals
Diffstat (limited to 'share')
-rw-r--r-- | share/man/just-mrrc.5.md | 12 | ||||
-rw-r--r-- | share/man/just.1.md | 4 |
2 files changed, 8 insertions, 8 deletions
diff --git a/share/man/just-mrrc.5.md b/share/man/just-mrrc.5.md index b6afe990..bb59c8bc 100644 --- a/share/man/just-mrrc.5.md +++ b/share/man/just-mrrc.5.md @@ -87,22 +87,22 @@ The just-mrrc is given by a JSON object. objects, specifying additional log files, on top of those specified on the command line. - - The value for the key *`remote execution`* is a JSON object specifying the + - The value for the key *`"remote execution"`* is a JSON object specifying the remote execution options for **`just-mr`**. For subkey *`"address"`* the value is a string specifying the remote execution address in a NAME:PORT format. - For subkey *`compatible`* the value is a flag which specifies whether the + For subkey *`"compatible"`* the value is a flag which specifies whether the remote endpoint uses the original remote execution protocol. Each subkey value can be overwritten by its corresponding command-line argument. - - The value for the key *`authentication`* is a JSON object specifying + - The value for the key *`"authentication"`* is a JSON object specifying client-side authentication options for **`just-mr`**. - For subkey *`ca cert`* the value is a string specifying the path to a TLS CA + For subkey *`"ca cert"`* the value is a string specifying the path to a TLS CA certificate. - For subkey *`client cert`* the value is a string specifying the path to a + For subkey *`"client cert"`* the value is a string specifying the path to a TLS client certificate. - For subkey *`client key`* the value is a string specifying the path to a TLS + For subkey *`"client key"`* the value is a string specifying the path to a TLS client key. Each subkey value can be overwritten by its corresponding command-line argument. diff --git a/share/man/just.1.md b/share/man/just.1.md index 529a9df5..b9f039d4 100644 --- a/share/man/just.1.md +++ b/share/man/just.1.md @@ -50,11 +50,11 @@ modules. The main repository is the repository containing the target specified on the command line. The main repository can either be read from the -multi-repository configuration file if it contains the key *`main`* or +multi-repository configuration file if it contains the key *`"main"`* or through the option **`--main`**. The command-line option **`--main`** overrides what is eventually read from the multi-repository configuration file. If neither the multi-repository configuration file -contains the *`main`* key nor the **`--main`** option is provided, the +contains the *`"main"`* key nor the **`--main`** option is provided, the lexicographical first repository from the multi-repository configuration file is used as main. |