From 6d9d59f6d8988dd235e28eb423c6b62109ff7290 Mon Sep 17 00:00:00 2001 From: Dmitry Nazarov <43438823+dmrnz@users.noreply.github.com> Date: Mon, 15 Nov 2021 14:28:53 +0300 Subject: [PATCH] Fix closing tag typo in features.md (#379) --- docs/features.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/features.md b/docs/features.md index 92ba6f2..e2029d5 100644 --- a/docs/features.md +++ b/docs/features.md @@ -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;
function action() {
-        // TODO
+        // TODO
         return true;
     }