Skip to content

Commit

Permalink
docs: avoid confusing double negation (ansible#62143)
Browse files Browse the repository at this point in the history
Avoid "no backward incompatible interface" term which uses a double
negation and replaces it with easier "backward compatible interface"
contruct.
  • Loading branch information
ssbarnea authored and vasilyprokopov committed Sep 15, 2019
1 parent 3e4e6c0 commit 7bdeae4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/templates/plugin.rst.j2
Expand Up @@ -409,7 +409,7 @@ Status
{% else %}

{% set support = { 'core': 'the Ansible Core Team', 'network': 'the Ansible Network Team', 'certified': 'an Ansible Partner', 'community': 'the Ansible Community', 'curated': 'a Third Party'} %}
{% set module_states = { 'preview': 'not guaranteed to have a backwards compatible interface', 'stableinterface': 'guaranteed to have no backward incompatible interface changes going forward'} %}
{% set module_states = { 'preview': 'not guaranteed to have a backwards compatible interface', 'stableinterface': 'guaranteed to have backward compatible interface changes going forward'} %}

{% if metadata %}
{% if metadata.status %}
Expand Down

0 comments on commit 7bdeae4

Please sign in to comment.