diff options
| author | Zack Hobson | 2014-02-04 08:57:01 -0800 | 
|---|---|---|
| committer | Zack Hobson | 2014-02-04 08:57:01 -0800 | 
| commit | 4793f74ff23cd4cbb2c46498aadef8fdf4d6030a (patch) | |
| tree | 3300859ca95200892c69d82028d2c3eae6fdfbd0 | |
| parent | 9b6962852173af3b5433c564edaefb2699e01a80 (diff) | |
| download | hcl-4793f74ff23cd4cbb2c46498aadef8fdf4d6030a.tar.bz2 | |
more documentation fixes
| -rw-r--r-- | README.markdown | 2 | ||||
| -rw-r--r-- | man/hcl.1.ronn | 4 | 
2 files changed, 3 insertions, 3 deletions
| diff --git a/README.markdown b/README.markdown index fc05b16..e819bfd 100644 --- a/README.markdown +++ b/README.markdown @@ -136,7 +136,7 @@ Here is a shell alias `myhcl` with a separate configuration from the  main `hcl` command, and another command to configure alias completion:      alias myhcl="env HCL_DIR=~/.myhcl hcl" -    complete -W `cat ~/.myhcl/aliases` myhcl +    complete -W "`cat ~/.myhcl/aliases`" myhcl  Adding something like the above to your bashrc will enable a new command,  `myhcl`. When using `myhcl` you can use different credentials and aliases, diff --git a/man/hcl.1.ronn b/man/hcl.1.ronn index 131af83..22756a0 100644 --- a/man/hcl.1.ronn +++ b/man/hcl.1.ronn @@ -104,7 +104,7 @@ The above starts and immediately stops a one-hour timer with the given note.  You can enable auto-completion of task aliases by adding this to your shell  configuration: -    complete -W `cat ~/.hcl/aliases` hcl +    complete -W "`cat ~/.hcl/aliases`" hcl  ### Configuration Profiles @@ -118,7 +118,7 @@ Here is a shell alias `myhcl` with a separate configuration from the  main `hcl` command, and another command to configure alias completion:      alias myhcl="env HCL_DIR=~/.myhcl hcl" -    complete -W `cat ~/.myhcl/aliases` myhcl +    complete -W "`cat ~/.myhcl/aliases`" myhcl  Adding something like the above to your bashrc will enable a new command,  `myhcl`. When using `myhcl` you can use different credentials and aliases, | 
