(fix) Add semicolons at macro invocation sites.
This commit is contained in:
		| @@ -13,7 +13,7 @@ use cookie::CookieJar; | ||||
| #[deriving(Clone, PartialEq, Show)] | ||||
| pub struct SetCookie(pub Vec<Cookie>); | ||||
|  | ||||
| deref!(SetCookie -> Vec<Cookie>) | ||||
| deref!(SetCookie -> Vec<Cookie>); | ||||
|  | ||||
| impl Header for SetCookie { | ||||
|     fn header_name(_: Option<SetCookie>) -> &'static str { | ||||
| @@ -111,3 +111,4 @@ fn cookie_jar() { | ||||
|     assert_eq!(jar.encrypted().find("foo"), new_jar.encrypted().find("foo")); | ||||
|     assert_eq!(jar.iter().collect::<Vec<Cookie>>(), new_jar.iter().collect::<Vec<Cookie>>()); | ||||
| } | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user