diff options
author | Adrien Thebo <git@somethingsinistral.net> | 2013-06-27 11:19:39 -0700 |
---|---|---|
committer | Adrien Thebo <git@somethingsinistral.net> | 2013-06-27 11:19:39 -0700 |
commit | 4d2558f383e18bbe322dd0feb073555491216ab4 (patch) | |
tree | 88563a23821ca63ac3435282caa9e95c02d5d76d /README.markdown | |
parent | ca7633c0e4830edb0dab4dc31609086eb7edba67 (diff) | |
parent | 7f98203f1863288675d8fa48e2830efca5e26324 (diff) |
Merge pull request #165 from tigercomputing/fixes/ensure_resource-doc
ensure_resource: fix documentation typo
Diffstat (limited to 'README.markdown')
-rw-r--r-- | README.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/README.markdown b/README.markdown index 0e40f51..2a1ddfd 100644 --- a/README.markdown +++ b/README.markdown @@ -258,7 +258,7 @@ resource. This example only creates the resource if it does not already exist: - ensure_resource('user, 'dan', {'ensure' => 'present' }) + ensure_resource('user', 'dan', {'ensure' => 'present' }) If the resource already exists but does not match the specified parameters, this function will attempt to recreate the resource leading to a duplicate |