mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-26 12:53:13 +00:00
Identifiers: Fix typo.
Function names can indeed not contain a "/".
This commit is contained in:
parent
ec92e91ddc
commit
30e02383a5
1 changed files with 1 additions and 1 deletions
|
@ -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 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.
|
A bind mode name (e.g., `bind -m abc ...`) is restricted to the rules for valid variable names.
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue