Fix reported test-tidy errors

This fixes lines that were reported to have missing
space after a comma.
This commit is contained in:
Brandon Fairchild 2015-09-01 16:30:42 -04:00
parent 24bc6dfb52
commit d61a6e2161
13 changed files with 19 additions and 19 deletions

View file

@ -1153,7 +1153,7 @@ impl Drop for CanvasRenderingContext2D {
}
}
pub fn parse_color(string: &str) -> Result<RGBA,()> {
pub fn parse_color(string: &str) -> Result<RGBA, ()> {
let mut parser = Parser::new(&string);
match CSSColor::parse(&mut parser) {
Ok(CSSColor::RGBA(rgba)) => {

View file

@ -1068,7 +1068,7 @@ impl XMLHttpRequest {
fn fetch(&self,
load_data: LoadData,
cors_request: Result<Option<CORSRequest>,()>,
cors_request: Result<Option<CORSRequest>, ()>,
global: GlobalRef) -> ErrorResult {
let cors_request = match cors_request {
Err(_) => {