From: Jeff King Date: Wed, 2 May 2012 23:43:52 +0000 (-0400) Subject: doc/config: fix inline literals X-Git-Tag: v1.7.11-rc0~61 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=9a7b0bca366d8d9b3b26f1bb1a75885780c0f0e4;p=git.git doc/config: fix inline literals Since commit 6cf378f, asciidoc backticks are now inline literals; therefore quoting {tilde} inside them is wrong (this instance was missed in 6cf378f because it happened on a parallel line of development). Signed-off-by: Jeff King Signed-off-by: Junio C Hamano --- diff --git a/Documentation/config.txt b/Documentation/config.txt index cb9882d0a..355ee5365 100644 --- a/Documentation/config.txt +++ b/Documentation/config.txt @@ -95,8 +95,8 @@ included file is expanded immediately, as if its contents had been found at the location of the include directive. If the value of the `include.path` variable is a relative path, the path is considered to be relative to the configuration file in which the include directive was -found. The value of `include.path` is subject to tilde expansion: `{tilde}/` -is expanded to the value of `$HOME`, and `{tilde}user/` to the specified +found. The value of `include.path` is subject to tilde expansion: `~/` +is expanded to the value of `$HOME`, and `~user/` to the specified user's home directory. See below for examples. Example