Skip to content

Commit 8d54600

Browse files
authored
Fix type in Regex
Closes #14310.
1 parent 65ae623 commit 8d54600

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/elixir/lib/regex.ex

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ defmodule Regex do
2626
A Regex is represented internally as the `Regex` struct. Therefore,
2727
`%Regex{}` can be used whenever there is a need to match on them.
2828
Keep in mind that all of the structs fields are private. There is
29-
also not guarantee two regular expressions from the same source are
29+
also no guarantee two regular expressions from the same source are
3030
equal, for example:
3131
3232
~r/(?<foo>.)(?<bar>.)/ == ~r/(?<foo>.)(?<bar>.)/

0 commit comments

Comments
 (0)