From 4f26e3120343dac7236df21fe8859fee5479eeab Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Sat, 8 Feb 2020 09:26:24 +0100 Subject: [PATCH] org-manual: Clarify "link" format for Babel code * doc/org-manual.org (Format): Clarify "link" format. Reported-by: Matt Huszagh --- doc/org-manual.org | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/org-manual.org b/doc/org-manual.org index 31c9d8745..f39a3651d 100644 --- a/doc/org-manual.org +++ b/doc/org-manual.org @@ -17371,13 +17371,13 @@ follows from the type specified above. - =link=, =graphics= :: - Result is a link to the file specified in =:file= header argument. - However, unlike plain =:file=, nothing is written to the disk. The - block is used for its side-effects only, as in the following - example: + When used along with =file= type, the result is a link to the file + specified in =:file= header argument. However, unlike plain =file= + type, nothing is written to the disk. The block is used for its + side-effects only, as in the following example: #+begin_example - ,#+begin_src shell :results link :file "download.tar.gz" + ,#+begin_src shell :results file link :file "download.tar.gz" wget -c "http://example.com/download.tar.gz" ,#+end_src #+end_example