From f13801d7a6bc3d4480f6a7db6150211c7c92d4bb Mon Sep 17 00:00:00 2001 From: Mattia Astorino Date: Sat, 10 Mar 2018 19:01:52 +0100 Subject: [PATCH] fix explanation --- snippets/counter.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snippets/counter.md b/snippets/counter.md index 3aee6c59f..7b50a2f1d 100644 --- a/snippets/counter.md +++ b/snippets/counter.md @@ -66,7 +66,7 @@ You can create a ordered list using any type of HTML. 3. `counter(name, style)` Displays the value of a section counter. Generally used in a `content` property. This function can recieve two parameters, the first as the name of the counter and the second one can be `decimal` or `upper-roman` (`decimal` by default). -4. `counters(variable_name, separator, style)` Displays the value of a section counter. Generally used in a `content` property. This function can recieve three parameters, the first as the name of the counter, the second one you can include a string which comes after the counter and the third one can be `decimal` or `upper-roman` (`decimal` by default). +4. `counters(counter, string, style)` Displays the value of a section counter. Generally used in a `content` property. This function can recieve three parameters, the first as the name of the counter, the second one you can include a string which comes after the counter and the third one can be `decimal` or `upper-roman` (`decimal` by default). 5. A CSS counter can be especially useful for making outlined lists, because a new instance of the counter is automatically created in child elements. Using the `counters()` function, separating text can be inserted between different levels of nested counters.