Skip to content

Commit

Permalink
docs: Fix typo in "New and Noteworthy".
Browse files Browse the repository at this point in the history
  • Loading branch information
jenisys committed Nov 5, 2022
1 parent eba4713 commit 7ec93d2
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions docs/new_and_noteworthy_v1.2.7.rst
Original file line number Diff line number Diff line change
Expand Up @@ -220,9 +220,10 @@ the user to provide an own comparison method (and type conversion support).

.. code:: gherkin
# -- FILE: features/active_tag.example1.feature
Feature: Active-Tag Example 1 with ValueObject
@use.with_temperatur.min_value=15
@use.with_temperature.min_value=15
Scenario: Only run if temperature >= 15 degrees Celcius
...
Expand Down Expand Up @@ -261,6 +262,7 @@ execution of an scenario to a temperature range, like:

.. code:: gherkin
# -- FILE: features/active_tag.example2.feature
Feature: Active-Tag Example 2 with Value Range
@use.with_temperature.min_value=10
Expand All @@ -272,7 +274,7 @@ execution of an scenario to a temperature range, like:
# -- FILE: features/environment.py
...
current_temperature = get_temperature() # RETURNS: integer-number in Celcius.
current_temperature = Sensors().get_temperature()
active_tag_value_provider = {
# -- COMPARISON:
# temperature.min_value: current.value >= tag.value
Expand All @@ -286,6 +288,7 @@ execution of an scenario to a temperature range, like:

.. code:: gherkin
# -- FILE: features/active_tag.example3.feature
Feature: Active-Tag Example 3 with Contains/Contained-in Comparison
@use.with_supported_payment_method=VISA
Expand Down

0 comments on commit 7ec93d2

Please sign in to comment.