From 30e02383a5aca3085e0aabbea80205dda756fe6a Mon Sep 17 00:00:00 2001 From: Fabian Homborg Date: Sun, 23 Apr 2017 13:46:56 +0200 Subject: [PATCH] Identifiers: Fix typo. Function names can indeed not contain a "/". --- doc_src/index.hdr.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc_src/index.hdr.in b/doc_src/index.hdr.in index 5be6eb56b..0f52349ed 100644 --- a/doc_src/index.hdr.in +++ b/doc_src/index.hdr.in @@ -673,7 +673,7 @@ The names given to shell objects such as variables and function names are known A variable name cannot be empty. It can contain only letters, digits, and underscores. It may begin and end with any of those characters. -A function name cannot be empty. It may not begin with a hyphen ("-") and many contain a slash ("/"). All other characters, including a space, are valid. +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.