Skip to content

Commit

Permalink
Convert step names in code examples to lowercase (#342)
Browse files Browse the repository at this point in the history
  • Loading branch information
uglide authored Jun 24, 2024
1 parent 130f489 commit 83f4211
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/components/example.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def make_ranges(self) -> None:
return
step_start = len(content) + 1
try:
step_name = l.split(STEP_START)[1].strip()
step_name = l.split(STEP_START)[1].strip().lower()
except IndexError:
step_name = None
elif re.search(send, l):
Expand Down

0 comments on commit 83f4211

Please sign in to comment.