summary refs log tree commit diff stats
path: root/src/nre.nim
diff options
context:
space:
mode:
Diffstat (limited to 'src/nre.nim')
-rw-r--r--src/nre.nim3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/nre.nim b/src/nre.nim
index 0585e49b2..f96820b2c 100644
--- a/src/nre.nim
+++ b/src/nre.nim
@@ -47,7 +47,8 @@ from unicode import runeLenAt
 type
   Regex* = ref object
     ## Represents the pattern that things are matched against, constructed with
-    ## ``re(string)``. Examples: ``re"foo"``, ``re(r"(*ANYCRLF)(?x)foo # comment".
+    ## ``re(string)``. Examples: ``re"foo"``, ``re(r"(*ANYCRLF)(?x)foo #
+    ## comment".``
     ##
     ## ``pattern: string``
     ##     the string that was used to create the pattern.