fix: cargo clippy

This commit is contained in:
Nicolas Moutschen 2022-08-22 12:01:07 +02:00
parent 4937dcf93d
commit d3a8cde256
1 changed files with 10 additions and 10 deletions

View File

@ -159,7 +159,7 @@ impl Registry {
}
for tag in arg.tags {
write!(sdl, " @tag(name: \"{}\")", tag.replace("\"", "\\\"")).ok();
write!(sdl, " @tag(name: \"{}\")", tag.replace('"', "\\\"")).ok();
}
}
}
@ -187,7 +187,7 @@ impl Registry {
write!(sdl, " @inaccessible").ok();
}
for tag in field.tags {
write!(sdl, " @tag(name: \"{}\")", tag.replace("\"", "\\\"")).ok();
write!(sdl, " @tag(name: \"{}\")", tag.replace('"', "\\\"")).ok();
}
if let Some(from) = field.override_from {
write!(sdl, " @override(from: \"{}\")", from).ok();
@ -222,7 +222,7 @@ impl Registry {
write!(sdl, "@inaccessible ").ok();
}
for tag in *tags {
write!(sdl, "@tag(name: \"{}\") ", tag.replace("\"", "\\\"")).ok();
write!(sdl, "@tag(name: \"{}\") ", tag.replace('"', "\\\"")).ok();
}
}
writeln!(sdl).ok();
@ -289,7 +289,7 @@ impl Registry {
}
for tag in *tags {
write!(sdl, "@tag(name: \"{}\") ", tag.replace("\"", "\\\"")).ok();
write!(sdl, "@tag(name: \"{}\") ", tag.replace('"', "\\\"")).ok();
}
}
@ -327,7 +327,7 @@ impl Registry {
}
for tag in *tags {
write!(sdl, "@tag(name: \"{}\") ", tag.replace("\"", "\\\"")).ok();
write!(sdl, "@tag(name: \"{}\") ", tag.replace('"', "\\\"")).ok();
}
}
self.write_implements(sdl, name);
@ -354,7 +354,7 @@ impl Registry {
write!(sdl, "@inaccessible ").ok();
}
for tag in *tags {
write!(sdl, "@tag(name: \"{}\") ", tag.replace("\"", "\\\"")).ok();
write!(sdl, "@tag(name: \"{}\") ", tag.replace('"', "\\\"")).ok();
}
}
writeln!(sdl, "{{").ok();
@ -374,7 +374,7 @@ impl Registry {
}
for tag in value.tags {
write!(sdl, " @tag(name: \"{}\")", tag.replace("\"", "\\\"")).ok();
write!(sdl, " @tag(name: \"{}\")", tag.replace('"', "\\\"")).ok();
}
}
writeln!(sdl).ok();
@ -405,7 +405,7 @@ impl Registry {
write!(sdl, "@inaccessible ").ok();
}
for tag in *tags {
write!(sdl, "@tag(name: \"{}\") ", tag.replace("\"", "\\\"")).ok();
write!(sdl, "@tag(name: \"{}\") ", tag.replace('"', "\\\"")).ok();
}
}
writeln!(sdl, "{{").ok();
@ -425,7 +425,7 @@ impl Registry {
write!(sdl, "@inaccessible ").ok();
}
for tag in field.tags {
write!(sdl, "@tag(name: \"{}\") ", tag.replace("\"", "\\\"")).ok();
write!(sdl, "@tag(name: \"{}\") ", tag.replace('"', "\\\"")).ok();
}
}
writeln!(sdl).ok();
@ -451,7 +451,7 @@ impl Registry {
write!(sdl, "@inaccessible ").ok();
}
for tag in *tags {
write!(sdl, "@tag(name: \"{}\") ", tag.replace("\"", "\\\"")).ok();
write!(sdl, "@tag(name: \"{}\") ", tag.replace('"', "\\\"")).ok();
}
}
write!(sdl, "=").ok();