diff options
author | Lamont Granquist <lamont@scriptkiddie.org> | 2016-09-15 09:06:37 -0700 |
---|---|---|
committer | Lamont Granquist <lamont@scriptkiddie.org> | 2016-09-15 09:06:37 -0700 |
commit | 04665b527141ae1da0a7c950bbba2d2c0560b336 (patch) | |
tree | 1ebac04665c4f9c312807ab06c555308d9bbc46c /lib/chef/resource | |
parent | bf3941560a6a7149dda9f0aac25588a48b0d1e30 (diff) | |
download | chef-04665b527141ae1da0a7c950bbba2d2c0560b336.tar.gz |
fix typos in deprecation message
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
Diffstat (limited to 'lib/chef/resource')
-rw-r--r-- | lib/chef/resource/user/linux_user.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chef/resource/user/linux_user.rb b/lib/chef/resource/user/linux_user.rb index dc73671d4b..5dbf22e360 100644 --- a/lib/chef/resource/user/linux_user.rb +++ b/lib/chef/resource/user/linux_user.rb @@ -40,7 +40,7 @@ class Chef Chef.log_deprecation "supports { manage_home: #{args[:manage_home]} } on the user resource is deprecated and will be removed in Chef 13, set manage_home: #{args[:manage_home]} instead" end if args.key?(:non_unique) - Chef.log_deprecation "supports { manage_home: #{args[:non_unique]} } on the user resource is deprecated and will be removed in Chef 13, set manage_home: #{args[:non_unique]} instead" + Chef.log_deprecation "supports { non_unique: #{args[:non_unique]} } on the user resource is deprecated and will be removed in Chef 13, set non_unique: #{args[:non_unique]} instead" end super end |