diff options
author | Kyle Meyer <kyle@kyleam.com> | 2017-03-26 17:23:05 -0400 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2017-03-26 21:21:29 -0400 |
commit | e2e8f1f0d0717dbe6a256f6ea0c61a2d57633443 (patch) | |
tree | 735a6ee091d8dba064c87af98aee8d2614fc15de | |
parent | efc97e0b5bb0bb8a1a15ba0ce8fab055a4a72cd6 (diff) | |
download | snakemake-mode-e2e8f1f0d0717dbe6a256f6ea0c61a2d57633443.tar.gz |
snakemake-read-file-target: Fix a docstring typo
-rw-r--r-- | snakemake.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/snakemake.el b/snakemake.el index b9ca62c..c5df565 100644 --- a/snakemake.el +++ b/snakemake.el @@ -375,9 +375,9 @@ currently limited to a single-item list." (defun snakemake-read-file-target () "Read a file target. If `snakemake-file-target-program' is non-nil, use it to generate -a collection file targets to prompt with. Otherwise, just read a -file name, adjusting the returned file name's path relative to -`snakemake-snakefile-directory'." +a collection of file targets to prompt with. Otherwise, just +read a file name, adjusting the returned file name's path +relative to `snakemake-snakefile-directory'." (let ((default (car (snakemake-file-targets-at-point t)))) (if snakemake-file-target-program (completing-read |