Fixed syntax error in Growl example code so it runs on copy and paste.

This commit is contained in:
Peter Gassner 2012-02-15 07:53:54 +01:00
parent 734f2a6f33
commit a3bc6b4c63

View File

@ -383,7 +383,7 @@ to avoid crashing the watcher in the case where the file has been removed.
on_stylesheet_saved do |filename| on_stylesheet_saved do |filename|
Growl.notify { Growl.notify {
self.message "#{File.basename(filename)} updated!" self.message = "#{File.basename(filename)} updated!"
self.icon = '/path/to/success.jpg' self.icon = '/path/to/success.jpg'
} }
end end