diff options
author | Ms2ger <ms2ger@gmail.com> | 2014-07-15 10:30:39 +0200 |
---|---|---|
committer | Ms2ger <ms2ger@gmail.com> | 2014-07-15 10:30:39 +0200 |
commit | d0a3619cd9bb40122399324f03efbaba7f6c7628 (patch) | |
tree | 5b94fbcdbc263054c2d0ecf29c8d8b6b5f3e27b7 /src | |
parent | ad08a11fa2757e9c49379791d9afc84d73334f50 (diff) | |
parent | 99987a2eb7708cdd08444e4046c0caad11e262b1 (diff) | |
download | servo-d0a3619cd9bb40122399324f03efbaba7f6c7628.tar.gz servo-d0a3619cd9bb40122399324f03efbaba7f6c7628.zip |
Merge pull request #2836 from zwarich/image-cache-comment
Fix comments in image_cache_task; r=Ms2ger
Diffstat (limited to 'src')
-rw-r--r-- | src/components/net/image_cache_task.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/components/net/image_cache_task.rs b/src/components/net/image_cache_task.rs index c6cba21ac64..405748d9d11 100644 --- a/src/components/net/image_cache_task.rs +++ b/src/components/net/image_cache_task.rs @@ -34,8 +34,7 @@ pub enum Msg { /// Clients must wait for a response before shutting down the ResourceTask Exit(Sender<()>), - // FIXME: We can probably get rid of this Cell now - /// Used be the prefetch tasks to post back image binaries + /// Used by the prefetch tasks to post back image binaries StorePrefetchedImageData(Url, Result<Vec<u8>, ()>), /// Used by the decoder tasks to post decoded images back to the cache |