Fixed typos in the beacon docs

This commit is contained in:
Seth House 2015-01-26 17:50:30 -07:00
parent 2f7376ad6b
commit 8e476bc455

View File

@ -10,7 +10,7 @@ primary example of this is the :py:mod:`~salt.beacons.inotify` beacon. This
beacon uses inotify to watch configured files or directories on the minion for
changes, creation, deletion etc.
This allows for the changes to be sent up tot he master where the
This allows for the changes to be sent up to the master where the
reactor can respond to changes.
Configuring The Beacons
@ -29,8 +29,8 @@ minion pillar, grains, or local config file:
Writing Beacon Plugins
======================
Beacon plugins use the standard salt loader system, meaning that many of the
constructs from other plugin systems holds true, such as the ``__virtul__``
Beacon plugins use the standard Salt loader system, meaning that many of the
constructs from other plugin systems holds true, such as the ``__virtual__``
function.
The important function in the Beacon Plugin is the ``beacon`` function. When