Adding couple of missing commas

This commit is contained in:
Tomasz Drwięga
2016-04-08 10:13:42 +02:00
parent 6395095659
commit f129126a82
4 changed files with 7 additions and 7 deletions

View File

@@ -26,7 +26,7 @@ pub trait Page : Send + Sync {
}
pub struct PageHandler<T : WebApp> {
pub app: T
pub app: T,
}
impl<T: WebApp> Page for PageHandler<T> {
@@ -50,7 +50,7 @@ impl<T: WebApp> Page for PageHandler<T> {
Err(_) => {
println!("Error while writing response.");
Ok(())
}
},
};
}
}