summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorajax <ajax@980ebf18-57e1-0310-9a29-db15c13687c0>2006-09-29 18:07:56 +0000
committerajax <ajax@980ebf18-57e1-0310-9a29-db15c13687c0>2006-09-29 18:07:56 +0000
commitde304e50c085aaaba246862de45163cedf0f617f (patch)
treea69e1c88a803cec239a2802d7c763c5594b3ae71
parentfee5116c3ac544d48d3ba5d6b434ce953d6330b0 (diff)
downloadpuppet-de304e50c085aaaba246862de45163cedf0f617f.tar.gz
puppet-de304e50c085aaaba246862de45163cedf0f617f.tar.xz
puppet-de304e50c085aaaba246862de45163cedf0f617f.zip
Rephrased a short section about finalizing the object dependence hierarchy.
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@1704 980ebf18-57e1-0310-9a29-db15c13687c0
-rw-r--r--documentation/documentation/howitworks.page10
1 files changed, 5 insertions, 5 deletions
diff --git a/documentation/documentation/howitworks.page b/documentation/documentation/howitworks.page
index 548db225d..a686c4c90 100644
--- a/documentation/documentation/howitworks.page
+++ b/documentation/documentation/howitworks.page
@@ -156,11 +156,11 @@ user IDs, not user names, so Puppet objects convert them appropriately.
(Incidentally, sometimes Puppet is creating the user that it's chowning a file
to, so whenever possible it ignores validation errors until the last minute.)
-The last phase of instantiation is the *finalization* phase. One of the goals
-of the Puppet language is to make file order matter as little as possible;
-this means that a Puppet object needs to be able to require other objects
-listed later in the manifest, which means that the required object will be
-instantiated after the requiring object. So, the finalization phase is used
+The last stage of the instantiation process finalizes the object dependencies.
+One of the goals of the Puppet language is to make file order matter as little
+as possible; this means that a Puppet object needs to be able to require other
+objects listed later in the manifest, which means that the required object will
+be instantiated after the requiring object. So, this finalization stage is used
to actually handle all of these requirements -- Puppet objects use their
references to objects and verify that the objects actually exist.