summaryrefslogtreecommitdiffstats
path: root/lib/puppet
diff options
context:
space:
mode:
authorLuke Kanies <luke@madstop.com>2008-08-23 19:02:43 -0500
committerLuke Kanies <luke@madstop.com>2008-08-26 22:40:39 -0700
commit2f224c9fc97cf632ee8a551180aaa08e263d77df (patch)
treed736d0798f622240125a2e0c4f350c6fd70996b7 /lib/puppet
parentbcd40fb58338e44d46452c47c0ef150a96a5f829 (diff)
downloadpuppet-2f224c9fc97cf632ee8a551180aaa08e263d77df.tar.gz
puppet-2f224c9fc97cf632ee8a551180aaa08e263d77df.tar.xz
puppet-2f224c9fc97cf632ee8a551180aaa08e263d77df.zip
Spell-correcting a comment
Signed-off-by: Luke Kanies <luke@madstop.com>
Diffstat (limited to 'lib/puppet')
-rw-r--r--lib/puppet/indirector/rest.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/puppet/indirector/rest.rb b/lib/puppet/indirector/rest.rb
index a2bfc5d9a..5ac25f02d 100644
--- a/lib/puppet/indirector/rest.rb
+++ b/lib/puppet/indirector/rest.rb
@@ -89,7 +89,7 @@ class Puppet::Indirector::REST < Puppet::Indirector::Terminus
private
- # Create the qurey string, if options are present.
+ # Create the query string, if options are present.
def query_string(request)
return "" unless request.options and ! request.options.empty?
"?" + request.options.collect { |key, value| "%s=%s" % [key, value] }.join("&")