diff options
author | Martin Nicholson <recyclebing+github@gmail.com> | 2018-01-16 16:09:49 +0000 |
---|---|---|
committer | Martin Nicholson <recyclebing+github@gmail.com> | 2018-01-16 16:09:49 +0000 |
commit | e2949649f054ca069e95a05b04d99bccc30ba45d (patch) | |
tree | 573bbccd846ecea4a5c38952225e8775b28027ce /bash.html.markdown | |
parent | 8d2055483e8c0a8147414f4695a7cf3e5ede819e (diff) |
Un-markdown-ify link
Diffstat (limited to 'bash.html.markdown')
-rw-r--r-- | bash.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bash.html.markdown b/bash.html.markdown index 354042ec..8f141673 100644 --- a/bash.html.markdown +++ b/bash.html.markdown @@ -169,7 +169,7 @@ then fi # Note that =~ only works within double [[ ]] square brackets, # which are subtly different from single [ ]. -# See the appropriate [manual section](http://www.gnu.org/software/bash/manual/bashref.html#Conditional-Constructs) for more on this. +# See http://www.gnu.org/software/bash/manual/bashref.html#Conditional-Constructs for more on this. # Expressions are denoted with the following format: echo $(( 10 + 5 )) # => 15 |