summaryrefslogtreecommitdiff
path: root/README.markdown
diff options
context:
space:
mode:
authorjbondpdx <jean@puppet.com>2017-05-08 14:02:10 -0700
committerEric Putnam <putnam.eric@gmail.com>2017-05-08 15:39:05 -0700
commit098e309aa82508a655fdfed885f22e0020e5cedd (patch)
treedd4ee69ee7861b7f9007bc232ead1bfe0fa8fde4 /README.markdown
parent5eebb740589a9f128b8d6a5cb7e40a347562f5fb (diff)
(MODULES-4706) prerelease fixes
Diffstat (limited to 'README.markdown')
-rw-r--r--README.markdown16
1 files changed, 8 insertions, 8 deletions
diff --git a/README.markdown b/README.markdown
index 1fd5697..7bfdd8e 100644
--- a/README.markdown
+++ b/README.markdown
@@ -63,12 +63,12 @@ node default {
## Reference
-* [Public classes][]
-* [Private classes][]
-* [Defined types][]
-* [Data types][]
-* [Facts][]
-* [Functions][]
+* [Public classes](#public-classes)
+* [Private classes](#private-classes)
+* [Defined types](#defined-types)
+* [Data types](#data-types)
+* [Facts](#facts)
+* [Functions](#functions)
### Classes
@@ -791,7 +791,7 @@ Returns the `dirname` of a path. For example, `dirname('/path/to/a/file.ext')` r
Returns the Unix version of the given string. Very useful when using a File resource with a cross-platform template.
```puppet
-file{$config_file:
+file { $config_file:
ensure => file,
content => dos2unix(template('my_module/settings.conf.erb')),
}
@@ -1799,7 +1799,7 @@ Returns the DOS version of a given string. Useful when using a File resource wit
*Type*: rvalue.
```puppet
-file{$config_file:
+file { $config_file:
ensure => file,
content => unix2dos(template('my_module/settings.conf.erb')),
}