From 1355a5f1715a73ad0628512ac3da48c4340c1208 Mon Sep 17 00:00:00 2001 From: Giorgio Calderone Date: Fri, 3 Apr 2020 21:58:47 +0200 Subject: [PATCH] Minor changes --- docs/src/style.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/src/style.md b/docs/src/style.md index de99380..b2b552a 100644 --- a/docs/src/style.md +++ b/docs/src/style.md @@ -32,13 +32,12 @@ in place of ```julia @gp ... "set xrange [-1:5]" ... ``` -This help reducing the number of strings used in the code, as well as the associated interpolating characters (`$`), and results in a more concise syntax. - +This help reducing the number of strings, as well as the associated interpolating characters (`$`), and results in a more concise syntax. ### 3 - Use abbreviations for commands and keywords: -Many gnuplot commands, as well as all keywords (see [Keywords for common commands](@ref), can be abbreviated as long as the abbreviation is unambiguous. E.g., the following code: +Many gnuplot commands, as well as all keywords (see [Keywords for common commands](@ref)), can be abbreviated as long as the abbreviation is unambiguous. E.g., the following code: ```julia @gp "set grid" "set key left" "set logscale y" @gp :- "set title 'Plot title'" "set label 'X label'" "set xrange [0:*]"