From 6d38c8c8c69eef353fe37008e05cbcfd9ecf8de0 Mon Sep 17 00:00:00 2001 From: shaido987 Date: Thu, 9 Sep 2021 16:34:08 +0800 Subject: [PATCH] Fix typo in marker-style.md Diamond is mentioned twice in the basic symbol list. --- doc/python/marker-style.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/python/marker-style.md b/doc/python/marker-style.md index abb4a33249..398a9d70c9 100644 --- a/doc/python/marker-style.md +++ b/doc/python/marker-style.md @@ -322,7 +322,7 @@ fig.show() The `marker_symbol` attribute allows you to choose from a wide array of symbols to represent markers in your figures. -The basic symbols are: `circle`, `square`, `diamond`, `cross`, `x`, `triangle`, `pentagon`, `hexagram`, `star`, `diamond`, `hourglass`, `bowtie`, `asterisk`, `hash`, `y`, and `line`. +The basic symbols are: `circle`, `square`, `diamond`, `cross`, `x`, `triangle`, `pentagon`, `hexagram`, `star`, `hourglass`, `bowtie`, `asterisk`, `hash`, `y`, and `line`. Each basic symbol is also represented by a number. Adding 100 to that number is equivalent to appending the suffix "-open" to a symbol name. Adding 200 is equivalent to appending "-dot" to a symbol name. Adding 300 is equivalent to appending "-open-dot" or "dot-open" to a symbol name.