summaryrefslogtreecommitdiff
path: root/examples/hg
diff options
context:
space:
mode:
authorGarrett Honeycutt <garrett@puppetlabs.com>2012-08-29 00:24:15 +0200
committerGarrett Honeycutt <garrett@puppetlabs.com>2012-08-29 00:24:15 +0200
commit3975481f29ac1908b253365c9939f671459b5302 (patch)
treeeeba532233b023daccf7e0285ac4c0dfff4146e2 /examples/hg
parentf3acccdfb8af8d98c8fc9c8e287ab22d27d62dac (diff)
Adds comma to last attribute to comply with style
Diffstat (limited to 'examples/hg')
-rw-r--r--examples/hg/clone.pp2
-rw-r--r--examples/hg/init_repo.pp2
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/hg/clone.pp b/examples/hg/clone.pp
index 92b3335..be2d955 100644
--- a/examples/hg/clone.pp
+++ b/examples/hg/clone.pp
@@ -2,5 +2,5 @@ vcsrepo { '/tmp/vcstest-hg-clone':
ensure => present,
provider => hg,
source => 'http://hg.basho.com/riak',
- revision => 'riak-0.5.3'
+ revision => 'riak-0.5.3',
}
diff --git a/examples/hg/init_repo.pp b/examples/hg/init_repo.pp
index 52aba4c..a890804 100644
--- a/examples/hg/init_repo.pp
+++ b/examples/hg/init_repo.pp
@@ -1,4 +1,4 @@
vcsrepo { '/tmp/vcstest-hg-init':
ensure => present,
- provider => hg
+ provider => hg,
}