Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@
# The format is a list of tuples containing the path and title.
#epub_pre_files = []

# HTML files shat should be inserted after the pages created by sphinx.
# HTML files that should be inserted after the pages created by sphinx.
# The format is a list of tuples containing the path and title.
#epub_post_files = []

Expand Down
11 changes: 8 additions & 3 deletions docs/scenarios/admin.rst
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ Here is an example of 'Hello World' in Puppet.
#the notification message by default.
}

Here is another example with system based logic. Note how the operatingsystem
Here is another example with system based logic. Note how the operating system
fact is being used as a variable prepended with the ``$`` sign. Similarly, this
holds true for other facts such as hostname which can be referenced by
``$hostname``
Expand Down Expand Up @@ -345,7 +345,12 @@ Blueprint
Buildout
--------

.. todo:: Write about Buildout
`Buildout <http://www.buildout.org>`_ is an open source software build tool.
Buildout is created using the Python programming language. It implements a
principle of separation of configuration from the scripts that do the setting up.
Buildout is primarily used to download and set up dependencies in Python eggs
format of the software being developed or deployed. Recipes for build tasks in any
environment can be created, and many are already available.

`Buildout Website <http://www.buildout.org>`_
Buidout is written in Python.