NFC: Remove an extra space when printing the 'attributes' prefix before a dictionary.

PiperOrigin-RevId: 278795313
This commit is contained in:
River Riddle 2019-11-05 23:39:21 -08:00 committed by A. Unique TensorFlower
parent 8e0f4860cd
commit 146f7de50d
1 changed files with 1 additions and 1 deletions

View File

@ -1346,7 +1346,7 @@ void ModulePrinter::printOptionalAttrDict(ArrayRef<NamedAttribute> attrs,
// Print the 'attributes' keyword if necessary. // Print the 'attributes' keyword if necessary.
if (withKeyword) if (withKeyword)
os << " attributes "; os << " attributes";
// Otherwise, print them all out in braces. // Otherwise, print them all out in braces.
os << " {"; os << " {";