diff --git a/docs/labs/regex1.html b/docs/labs/regex1.html
index 508b0e2e..157dbee4 100644
--- a/docs/labs/regex1.html
+++ b/docs/labs/regex1.html
@@ -111,8 +111,8 @@
Task Information
that an input is must be either “ab” or “de”,
use the regex “^(ab|de)$”.
To validate the same thing in Python, use
-“^(ab|de)\Z” or “\A(ab|de)\Z” (note that it's
-not quite the same thing).
+“^(ab|de)\Z” or “\A(ab|de)\Z” (note that the
+regex pattern is slightly different).
More information is available in the OpenSSF guide