Fix closing tag typo in features.md (#379)

This commit is contained in:
Dmitry Nazarov 2021-11-15 14:28:53 +03:00 committed by GitHub
parent 67a5486b46
commit 6d9d59f6d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -310,7 +310,7 @@ When necessary emphasize that code is commented, you need to use span element wi
If you want to color part of code, wrap this part with `mark` to add yellow background and `mark` with `important` class to add red background;
<pre><code>function <mark>action()</mark> {
<span class="comment">// TODO<span>
<span class="comment">// TODO</span>
return <mark class="important">true</mark>;
}</code></pre>