From fefaa48cc1572d4a682c7447973a6da28bc84f63 Mon Sep 17 00:00:00 2001 From: Robotic-Brain Date: Mon, 15 May 2017 19:01:13 +0200 Subject: [PATCH] Fixing Grammar (then -> than) --- .../help/documentation/configuration-reference.markdown | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/compass-style.org/content/help/documentation/configuration-reference.markdown b/compass-style.org/content/help/documentation/configuration-reference.markdown index f4fe540e9c..2065f2bdf2 100644 --- a/compass-style.org/content/help/documentation/configuration-reference.markdown +++ b/compass-style.org/content/help/documentation/configuration-reference.markdown @@ -465,19 +465,19 @@ to avoid crashing the watcher in the case where the file has been removed. ## Callbacks -**`on_sprite_saved`** -- Pass this function a block of code that gets executed after a sprite is saved to disk. The block will be passed the filename. Can be invoked more then once. Example: +**`on_sprite_saved`** -- Pass this function a block of code that gets executed after a sprite is saved to disk. The block will be passed the filename. Can be invoked more than once. Example: on_sprite_saved do |filename| post_process(filename) if File.exists?(filename) end -**`on_sprite_generated`** -- Pass this function a block of code that gets executed after a sprite is generated but before its saved to disk. The block will be passed an instance of `ChunkyPNG::Image`. Can be invoked more then once. Example: +**`on_sprite_generated`** -- Pass this function a block of code that gets executed after a sprite is generated but before its saved to disk. The block will be passed an instance of `ChunkyPNG::Image`. Can be invoked more than once. Example: on_sprite_generated do |sprite_data| sprite_data.metadata['Caption'] = "This Image is © My Company 2011" end -**`on_stylesheet_saved`** -- Pass this function a block of code that gets executed after a stylesheet is processed. The block will be passed the filename. Can be invoked more then once. Example: +**`on_stylesheet_saved`** -- Pass this function a block of code that gets executed after a stylesheet is processed. The block will be passed the filename. Can be invoked more than once. Example: on_stylesheet_saved do |filename| Growl.notify { @@ -486,7 +486,7 @@ to avoid crashing the watcher in the case where the file has been removed. } end -**`on_stylesheet_error`** -- Pass this function a block of code that gets executed if a stylesheet has an error while processing. The block will be passed the filename and the error message. Can be invoked more then once. Example: +**`on_stylesheet_error`** -- Pass this function a block of code that gets executed if a stylesheet has an error while processing. The block will be passed the filename and the error message. Can be invoked more than once. Example: on_stylesheet_error do |filename, message| Growl.notify {