Add missing space in stores

This commit is contained in:
Rerumu
2022-08-23 12:41:28 -04:00
parent 0394aa8895
commit b29e25eb86
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -262,7 +262,7 @@ impl DriverNoContext for StoreAt {
self.pointer().write(w)?;
if self.offset() != 0 {
write!(w, "+ {}", self.offset())?;
write!(w, " + {}", self.offset())?;
}
write!(w, ", ")?;
+1 -1
View File
@@ -281,7 +281,7 @@ impl DriverNoContext for StoreAt {
self.pointer().write(w)?;
if self.offset() != 0 {
write!(w, "+ {}", self.offset())?;
write!(w, " + {}", self.offset())?;
}
write!(w, ", ")?;