You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Data/String/Regex.purs
+16-9
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
-- | Wraps Javascript's `RegExp` object that enables matching strings with
2
-
-- | patternes defined by regular expressions.
2
+
-- | patterns defined by regular expressions.
3
3
-- | For details of the underlying implementation, see [RegExp Reference at MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp).
-- | Transforms occurences of the `Regex` using a function of the matched
104
-
-- | substring and a list of submatch strings.
105
-
-- | See the [reference](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/replace#Specifying_a_function_as_a_parameter).
-- | Transforms occurrences of the `Regex` using a function of the matched
112
+
-- | substring and a list of groups of type `Maybe String`, where `Nothing`
113
+
-- | represents an unmatched optional capturing group.
114
+
-- | See the [reference](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/replace#Specifying_a_function_as_a_parameter).
0 commit comments