diff --git a/regular-expressions.html b/regular-expressions.html
index abdf9fa8..5895765f 100755
--- a/regular-expressions.html
+++ b/regular-expressions.html
@@ -408,7 +408,7 @@
Case study: Parsing Phone Numbers
''', re.VERBOSE)
>>> phonePattern.search('work 1-(800) 555.1212 #1234').groups() ①
('800', '555', '1212', '1234')
->>> phonePattern.search('800-555-1212') ②
+>>> phonePattern.search('800-555-1212').groups() ②
('800', '555', '1212', '')
- Other than being spread out over multiple lines, this is exactly the same regular expression as the last step, so it’s no surprise that it parses the same inputs.