diff options
author | Helen <helen@puppetlabs.com> | 2015-09-28 11:16:28 +0100 |
---|---|---|
committer | Helen <helen@puppetlabs.com> | 2015-09-28 11:16:28 +0100 |
commit | 48b658fc1c948103eaf04cd10671dd1a6fd61b8c (patch) | |
tree | 7152820c359cf5e587fd6ff1f0add4775f06a5cc | |
parent | 39e81aa8b51c6562e498cdc562826eee470d841e (diff) | |
parent | bfa21edbaeebd61b356f51a7586da64f8d5d757a (diff) | |
download | puppet-stdlib-48b658fc1c948103eaf04cd10671dd1a6fd61b8c.tar.gz puppet-stdlib-48b658fc1c948103eaf04cd10671dd1a6fd61b8c.tar.bz2 |
Merge pull request #532 from DavidS/fix-is_a-readme
(FM-3701) Update README for is_a
-rw-r--r-- | README.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/README.markdown b/README.markdown index 27dd0a7..f919323 100644 --- a/README.markdown +++ b/README.markdown @@ -405,7 +405,7 @@ Returns an array an intersection of two. For example, `intersection(["a","b","c" #### `is_a` -Boolean check to determine whether a variable is of a given data type. This is equivalent to the `=~` type checks. +Boolean check to determine whether a variable is of a given data type. This is equivalent to the `=~` type checks. This function is only available in Puppet 4, or when using the "future" parser. ~~~ foo = 3 |