lib/carrierwave/uploader/cache.rb in carrierwave-0.5.8 vs lib/carrierwave/uploader/cache.rb in carrierwave-0.6.0

- old
+ new

@@ -88,12 +88,12 @@ end ## # Caches the given file. Calls process! to trigger any process callbacks. # - # By default, cache!() uses copy_to(), which operates by copying the file - # to the cache, then deleting the original file. If move_to_cache() is - # overriden to return true, then cache!() uses move_to(), which simply + # By default, cache!() uses copy_to(), which operates by copying the file + # to the cache, then deleting the original file. If move_to_cache() is + # overriden to return true, then cache!() uses move_to(), which simply # moves the file to the cache. Useful for large files. # # === Parameters # # [new_file (File, IOString, Tempfile)] any kind of file object