diff options
author | Hunter Haugen <hunter@puppet.com> | 2016-05-11 15:55:01 -0700 |
---|---|---|
committer | Hunter Haugen <hunter@puppet.com> | 2016-05-11 15:55:01 -0700 |
commit | 1b00c3bf3dc49bc8c49677eb737ad8f7ef46d88e (patch) | |
tree | 6fad6ecac356a981697a9acb86a4f25b4ec55da5 | |
parent | b2165dfc34fe7acc5053d246715ad673b3f38c6b (diff) | |
parent | 8f1efdad22e81c448b2c259e55d3d05a2c0040a2 (diff) |
Merge pull request #604 from rjw1/patch-1
Add a missing s in the ensure_packages hash example
-rw-r--r-- | README.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/README.markdown b/README.markdown index 298b852..e4efa9e 100644 --- a/README.markdown +++ b/README.markdown @@ -360,7 +360,7 @@ For Array: For Hash: - ensure_packages({'ksh' => { enure => '20120801-1' } , 'mypackage' => { source => '/tmp/myrpm-1.0.0.x86_64.rpm', provider => "rpm" }}, {'ensure' => 'present'}) + ensure_packages({'ksh' => { ensure => '20120801-1' } , 'mypackage' => { source => '/tmp/myrpm-1.0.0.x86_64.rpm', provider => "rpm" }}, {'ensure' => 'present'}) #### `ensure_resource` |