From 7401bc3c33b2ecbcfbd5d98164f57f3dc9f46a25 Mon Sep 17 00:00:00 2001 From: Lee Lowder Date: Fri, 8 Sep 2017 07:22:47 -0500 Subject: [PATCH] Fixed typo in provider/mysql_grant/mysql.rb --- lib/puppet/provider/mysql_grant/mysql.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/puppet/provider/mysql_grant/mysql.rb b/lib/puppet/provider/mysql_grant/mysql.rb index c54d2b6f5..5d3b4faa5 100644 --- a/lib/puppet/provider/mysql_grant/mysql.rb +++ b/lib/puppet/provider/mysql_grant/mysql.rb @@ -116,7 +116,7 @@ def revoke(user, table, revoke_privileges = ['ALL']) def destroy # if the user was dropped, it'll have been removed from the user hash - # as the grants are alraedy removed by the DROP statement + # as the grants are already removed by the DROP statement if self.class.users.include? @property_hash[:user] if @property_hash[:privileges].include?('PROXY') revoke(@property_hash[:user], @property_hash[:table], @property_hash[:privileges])