Skip to content

Commit a378f5e

Browse files
committed
Fix up links and misc typo
1 parent 87f8994 commit a378f5e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

python/cucumber_tag_expressions/parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ def make_operand(cls, text):
223223
Returns:
224224
Literal: Operand object created from text.
225225
"""
226-
# -- EXTENSION-POINT: For cucumber/common#406 or similar.
226+
# -- EXTENSION-POINT: #TODO: See https://github.com/cucumber/common/issues/406 for a similar extension point.
227227
return Literal(text)
228228

229229
@classmethod

python/tests/unit/test_parser.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ def test_parse__fails_for_empty_parens_groups(self, text, error_message):
230230
("a and (b c) or", "Syntax error. Expected operator after b"),
231231
])
232232
def test_parse__fails_with_rpn_notation(self, text, expected):
233-
# -- NOTE: RPN parsebility due to Shunting-yard algorithm (stack-based).
233+
# -- NOTE: RPN parseability due to Shunting-yard algorithm (stack-based).
234234
self.assert_parse_with_error_contains_message(text, expected)
235235

236236
# -- TODO:

0 commit comments

Comments
 (0)