aboutsummaryrefslogtreecommitdiffstats
path: root/components/net_traits/storage_thread.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/net_traits/storage_thread.rs')
-rw-r--r--components/net_traits/storage_thread.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/net_traits/storage_thread.rs b/components/net_traits/storage_thread.rs
index e4fec8729f1..b56ed2e3181 100644
--- a/components/net_traits/storage_thread.rs
+++ b/components/net_traits/storage_thread.rs
@@ -8,7 +8,7 @@ use servo_url::ServoUrl;
#[derive(Copy, Clone, Deserialize, Serialize, HeapSizeOf)]
pub enum StorageType {
Session,
- Local
+ Local,
}
/// Request operations on the storage data associated with a particular url
@@ -36,5 +36,5 @@ pub enum StorageThreadMsg {
Clear(IpcSender<bool>, ServoUrl, StorageType),
/// send a reply when done cleaning up thread resources and then shut it down
- Exit(IpcSender<()>)
+ Exit(IpcSender<()>),
}