diff options
author | Luke Kanies <luke@madstop.com> | 2008-12-11 08:24:43 -0600 |
---|---|---|
committer | Luke Kanies <luke@madstop.com> | 2008-12-18 11:10:22 -0600 |
commit | 60062e4b9ae479ddbf97f4fc3495d04bc00196d5 (patch) | |
tree | 4eee797b0c2f883c1daeb383a07ca87749cd7d11 /lib/puppet/parser/resource.rb | |
parent | 6b14000ae54a11da3fa16c1b4685f630abca869b (diff) | |
download | puppet-60062e4b9ae479ddbf97f4fc3495d04bc00196d5.tar.gz puppet-60062e4b9ae479ddbf97f4fc3495d04bc00196d5.tar.xz puppet-60062e4b9ae479ddbf97f4fc3495d04bc00196d5.zip |
Renaming the "Catalog#to_type" method to "Catalog#to_ral"
Signed-off-by: Luke Kanies <luke@madstop.com>
Diffstat (limited to 'lib/puppet/parser/resource.rb')
-rw-r--r-- | lib/puppet/parser/resource.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/puppet/parser/resource.rb b/lib/puppet/parser/resource.rb index 75c885b61..12c1a8f52 100644 --- a/lib/puppet/parser/resource.rb +++ b/lib/puppet/parser/resource.rb @@ -327,8 +327,8 @@ class Puppet::Parser::Resource # Convert this resource to a RAL resource. We hackishly go via the # transportable stuff. - def to_type - to_resource.to_type + def to_ral + to_resource.to_ral end private |