Skip to content

Commit

Permalink
Fix a few docs typos
Browse files Browse the repository at this point in the history
  • Loading branch information
nikolas authored and clintonb committed Jan 9, 2020
1 parent 1f7e975 commit d1203b0
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/starting/configuring.rst
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ behavior.

``WAFFLE_CREATE_MISSING_SWITCHES``
If Waffle encounters a reference to a switch that is not in the database, should Waffle create the sample?
If true new switchs are created and set to the value of ``WAFFLE_SWITCH_DEFAULT``
If true new switches are created and set to the value of ``WAFFLE_SWITCH_DEFAULT``
Defaults to ``False``.

``WAFFLE_CREATE_MISSING_SAMPLES``
Expand Down
4 changes: 2 additions & 2 deletions docs/types/flag.rst
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Flags can be administered through the Django `admin site`_ or the
The name of the flag. Will be used to identify the flag everywhere.
:Everyone:
Globally set the Flag, **overriding all other criteria**. Leave as
*Unknown* to use other critera.
*Unknown* to use other criteria.
:Testing:
Can the flag be specified via a querystring parameter? :ref:`See
below <types-flag-testing>`.
Expand Down Expand Up @@ -231,7 +231,7 @@ auto-created database record.
Log Missing
===================

Wether or not you enabled :ref:`Auto Create Missing Flags <types-flag-auto-create-missing>`,
Whether or not you enabled :ref:`Auto Create Missing Flags <types-flag-auto-create-missing>`,
it can be practical to be informed that a flag was or is missing.
If you'd like waffle to log a warning, error, ... you can set :ref:`WAFFLE_LOG_MISSING_FLAGS
<starting-configuring>` to any level known by Python default logger.
2 changes: 1 addition & 1 deletion docs/types/sample.rst
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ always evaluates to ``False``.
Log Missing
===================

Wether or not you enabled :ref:`Auto Create Missing Sample <types-sample-auto-create-missing>`,
Whether or not you enabled :ref:`Auto Create Missing Sample <types-sample-auto-create-missing>`,
it can be practical to be informed that a sample was or is missing.
If you'd like waffle to log a warning, error, ... you can set :ref:`WAFFLE_LOG_MISSING_SAMPLES
<starting-configuring>` to any level known by Python default logger.
4 changes: 2 additions & 2 deletions docs/types/switch.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Auto Create Missing
When a switch is evaluated in code that is missing in the database the
switch returns the :ref:`WAFFLE_SWITCH_DEFAULT <starting-configuring>`
value but does not create a switch in the database. If you'd like waffle
to create missing switchs in the database whenever it encounters a
to create missing switches in the database whenever it encounters a
missing switch you can set :ref:`WAFFLE_CREATE_MISSING_SWITCHES
<starting-configuring>` to ``True``. Missing switches will be created in
the database and the value of the ``Active`` switch attribute will be
Expand All @@ -46,7 +46,7 @@ auto-created database record.
Log Missing
===================

Wether or not you enabled :ref:`Auto Create Missing Switch <types-switch-auto-create-missing>`,
Whether or not you enabled :ref:`Auto Create Missing Switch <types-switch-auto-create-missing>`,
it can be practical to be informed that a switch was or is missing.
If you'd like waffle to log a warning, error, ... you can set :ref:`WAFFLE_LOG_MISSING_FLAGS
<starting-configuring>` to any level known by Python default logger.

0 comments on commit d1203b0

Please sign in to comment.