From c53107a3adbee7c07729341188d25bf4c7b116c7 Mon Sep 17 00:00:00 2001 From: Fabian Homborg Date: Fri, 18 Sep 2020 17:10:09 +0200 Subject: [PATCH] docs: Destuffify There really is no need to show our technical writing prowess here, we can use plain english. [ci skip] --- doc_src/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc_src/index.rst b/doc_src/index.rst index c8d6f06d1..cf0c764f9 100644 --- a/doc_src/index.rst +++ b/doc_src/index.rst @@ -1382,7 +1382,7 @@ The names given to variables and functions (so called "identifiers") have to fol - A function name cannot be empty. It may not begin with a hyphen ("-") and may not contain a slash ("/"). All other characters, including a space, are valid. -- A bind mode name (e.g., ``bind -m abc ...``) is restricted to the rules for valid variable names. +- A bind mode name (e.g., ``bind -m abc ...``) must be a valid variable name. Other things have other restrictions. For instance what is allowed for file names depends on your system, but at the very least they cannot contain a "/" (because that is the path separator) or NULL byte (because that is how UNIX ends strings).