diff options
author | Kyle Meyer <kyle@kyleam.com> | 2019-01-24 19:35:52 -0500 |
---|---|---|
committer | Kyle Meyer <kyle@kyleam.com> | 2019-01-24 20:01:42 -0500 |
commit | d6019ec351d123b4b4f499d18068b72a187fafe6 (patch) | |
tree | f4a103ff5f2e44ab0e73e2b284cafe0410d4e513 | |
parent | 0999aa38855912f4100d8f9620185b14f46756eb (diff) | |
download | org-link-edit-d6019ec351d123b4b4f499d18068b72a187fafe6.tar.gz |
transport: Fix a docstring typo
-rw-r--r-- | org-link-edit.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/org-link-edit.el b/org-link-edit.el index a77b988..00cc109 100644 --- a/org-link-edit.el +++ b/org-link-edit.el @@ -348,8 +348,8 @@ With prefix argument PREVIOUS, move the previous link instead of the next link. Non-interactively, use the text between BEG and END as the -description, moving the next (or previous) link relative BEG and -END." +description, moving the next (or previous) link relative to BEG +and END." (interactive (cons current-prefix-arg (and (use-region-p) (list (region-beginning) (region-end))))) |