summary refs log tree commit diff stats
path: root/tests/stdlib/trst.nim
diff options
context:
space:
mode:
authorMiran <narimiran@disroot.org>2021-07-28 14:31:13 +0200
committerGitHub <noreply@github.com>2021-07-28 14:31:13 +0200
commite616675c419552a85bdf0b47f47586852be8b5be (patch)
tree86e9910693d076d030b819e441b3710bd90add4c /tests/stdlib/trst.nim
parenta273ea70e8817e3509014a1b3dcd16a360ed400b (diff)
downloadNim-e616675c419552a85bdf0b47f47586852be8b5be.tar.gz
various small documentation improvements (#18602)
Diffstat (limited to 'tests/stdlib/trst.nim')
-rw-r--r--tests/stdlib/trst.nim10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/stdlib/trst.nim b/tests/stdlib/trst.nim
index fc3ccbf4e..bc11f219c 100644
--- a/tests/stdlib/trst.nim
+++ b/tests/stdlib/trst.nim
@@ -182,9 +182,9 @@ suite "RST parsing":
   test "using .. as separator b/w directives and block quotes":
     check(dedent"""
         .. note:: someNote
-    
+
         ..
-    
+
           someBlockQuote""".toAst ==
       dedent"""
         rnInner
@@ -300,14 +300,14 @@ suite "RST indentation":
     let input1 = dedent"""
       .. code-block:: nim
           :test: "nim c $1"
-      
+
         template additive(typ: typedesc) =
           discard
       """
     let input2 = dedent"""
       .. code-block:: nim
         :test: "nim c $1"
-      
+
         template additive(typ: typedesc) =
           discard
       """
@@ -320,7 +320,7 @@ suite "RST indentation":
     let inputWrong = dedent"""
       .. code-block:: nim
        :test: "nim c $1"
-      
+
          template additive(typ: typedesc) =
            discard
       """