aboutsummaryrefslogtreecommitdiffhomepage
path: root/doc_src
diff options
context:
space:
mode:
authorGravatar Kurtis Rader <krader@skepticism.us>2016-04-23 12:26:57 -0700
committerGravatar Kurtis Rader <krader@skepticism.us>2016-04-23 12:26:57 -0700
commitb8817215dcfa6a3d069ef77e43d116983c855982 (patch)
tree3748b72b40e5e253d9266e4ca61d7eea28336b14 /doc_src
parentf28a1c58f3a91c7ed97e1fbf1598a69c234cf9cb (diff)
trivial fixes to make doxygen happy
Diffstat (limited to 'doc_src')
-rw-r--r--doc_src/bind.txt4
-rw-r--r--doc_src/echo.txt2
2 files changed, 3 insertions, 3 deletions
diff --git a/doc_src/bind.txt b/doc_src/bind.txt
index f645e32d..c76795e4 100644
--- a/doc_src/bind.txt
+++ b/doc_src/bind.txt
@@ -131,7 +131,7 @@ The following special input functions are available:
\subsection bind-example Examples
\fish
-bind \cd 'exit'
+bind \\cd 'exit'
\endfish
Causes `fish` to exit when @key{Control,D} is pressed.
@@ -142,7 +142,7 @@ Performs a history search when the @key{Page Up} key is pressed.
\fish
set -g fish_key_bindings fish_vi_key_bindings
-bind -M insert \cc kill-whole-line force-repaint
+bind -M insert \\cc kill-whole-line force-repaint
\endfish
Turns on Vi key bindings and rebinds @key{Control,C} to clear the input line.
diff --git a/doc_src/echo.txt b/doc_src/echo.txt
index 75e9ce10..69d6df4e 100644
--- a/doc_src/echo.txt
+++ b/doc_src/echo.txt
@@ -55,6 +55,6 @@ echo 'Hello World'
Print hello world to stdout
\fish
-echo -e 'Top\nBottom'
+echo -e 'Top\\nBottom'
\endfish
Print Top and Bottom on separate lines, using an escape sequence