From 98fb0ea165809c6bfdad10199c8937f4fc2af16e Mon Sep 17 00:00:00 2001 From: jbondpdx Date: Wed, 13 Aug 2014 14:21:46 -0700 Subject: [PATCH] Docs: fixed code formatting Fixed code indentation for Implementing Child Providers section. --- README.markdown | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.markdown b/README.markdown index 23f2c125..50901e31 100644 --- a/README.markdown +++ b/README.markdown @@ -85,11 +85,11 @@ Puppet::Type.newtype(:glance_api_config) do end newproperty(:value) do desc 'The value of the setting to be defined.' - munge do |v| - v.to_s.strip - end - end + munge do |v| + v.to_s.strip end + end +end ``` This type must also have a provider that uses the `ini_setting` provider as its parent. For example: