From a3bc6b4c63ea3d814a58ef6f4e8cfbb83c4cc69b Mon Sep 17 00:00:00 2001 From: Peter Gassner Date: Wed, 15 Feb 2012 07:53:54 +0100 Subject: [PATCH] Fixed syntax error in Growl example code so it runs on copy and paste. --- doc-src/content/help/tutorials/configuration-reference.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc-src/content/help/tutorials/configuration-reference.markdown b/doc-src/content/help/tutorials/configuration-reference.markdown index 93da7159..c818083d 100644 --- a/doc-src/content/help/tutorials/configuration-reference.markdown +++ b/doc-src/content/help/tutorials/configuration-reference.markdown @@ -383,7 +383,7 @@ to avoid crashing the watcher in the case where the file has been removed. on_stylesheet_saved do |filename| Growl.notify { - self.message "#{File.basename(filename)} updated!" + self.message = "#{File.basename(filename)} updated!" self.icon = '/path/to/success.jpg' } end