diff options
author | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-09-15 01:27:15 +0000 |
---|---|---|
committer | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-09-15 01:27:15 +0000 |
commit | 16d9d6fe69d6eb01f7655c760d54de5986e2b3f1 (patch) | |
tree | e5b8196b06d2f996084bcbe0d726432b195e7c9f /lib/puppet | |
parent | 3b8c9ff8235e1a2cfc7e17dae9933979e10264b3 (diff) | |
download | puppet-16d9d6fe69d6eb01f7655c760d54de5986e2b3f1.tar.gz puppet-16d9d6fe69d6eb01f7655c760d54de5986e2b3f1.tar.xz puppet-16d9d6fe69d6eb01f7655c760d54de5986e2b3f1.zip |
Fixing spelling of retrieve, to fix ##268
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@1596 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'lib/puppet')
-rw-r--r-- | lib/puppet/event.rb | 2 | ||||
-rw-r--r-- | lib/puppet/type/pfile.rb | 2 | ||||
-rwxr-xr-x | lib/puppet/type/pfile/source.rb | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/lib/puppet/event.rb b/lib/puppet/event.rb index 916e39c7c..307c3540a 100644 --- a/lib/puppet/event.rb +++ b/lib/puppet/event.rb @@ -180,7 +180,7 @@ module Puppet return source else raise Puppet::Error, - "Could not retreive dependency %s[%s] for %s[%s]" % + "Could not retrieve dependency %s[%s] for %s[%s]" % [@source[0], @source[1], @target[0], @target[1]] end end diff --git a/lib/puppet/type/pfile.rb b/lib/puppet/type/pfile.rb index a8d5fbe33..714fbda5f 100644 --- a/lib/puppet/type/pfile.rb +++ b/lib/puppet/type/pfile.rb @@ -781,7 +781,7 @@ module Puppet unless stat = self.stat(true) self.debug "File does not exist" @states.each { |name,state| - # We've already retreived the source, and we don't + # We've already retrieved the source, and we don't # want to overwrite whatever it did. This is a bit # of a hack, but oh well, source is definitely special. next if name == :source diff --git a/lib/puppet/type/pfile/source.rb b/lib/puppet/type/pfile/source.rb index 744d66f34..65aec1dfd 100755 --- a/lib/puppet/type/pfile/source.rb +++ b/lib/puppet/type/pfile/source.rb @@ -230,7 +230,7 @@ module Puppet if @is == :notdescribed self.retrieve # try again if @is == :notdescribed - @parent.log "Could not retreive information on %s" % + @parent.log "Could not retrieve information on %s" % @parent.title return nil end |