Fixed a small typo

This commit is contained in:
ds22x 2021-02-03 02:11:27 +01:00 committed by GitHub
parent 349913cc77
commit 0735908d9a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,7 +26,7 @@ auto BSMemory::manifest() const -> string {
output.append(" label: ", Location::prefix(location), "\n");
output.append(" name: ", Location::prefix(location), "\n");
output.append(" board\n");
output.append(Memory{}.type("Flash").size(0x100000()).content("Program").text());
output.append(Memory{}.type("Flash").size(0x100000).content("Program").text());
return output;
}