diff --git a/css-lists-3/Overview.bs b/css-lists-3/Overview.bs index 53cf611ca3a..daa480fd921 100644 --- a/css-lists-3/Overview.bs +++ b/css-lists-3/Overview.bs @@ -900,7 +900,7 @@ Manipulating Counter Values: the 'counter-increment' and 'counter-set' propertie h1::before { content: "Chapter " counter(chapter) ". "; counter-increment: chapter; /* Add 1 to chapter */ - counter-reset: section; /* Set section to 0 */ + counter-set: section; /* Set section to 0 */ } h2::before { content: counter(chapter) "." counter(section) " ";