Skip to content

Commit

Permalink
fix(def): remove whitespace after END DESIGN stmt (#436)
Browse files Browse the repository at this point in the history
Newlines after `END DESIGN` may trigger warnings
in commercial tools.
  • Loading branch information
rahulk29 authored Jul 19, 2024
1 parent 48af6fc commit 21fec8b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/lefdef/src/def.rs
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ impl WriteDef for Def {
n.write(out)?;
}

writeln!(out, "END DESIGN {}", self.design)?;
write!(out, "END DESIGN {}", self.design)?;

Ok(())
}
Expand Down

0 comments on commit 21fec8b

Please sign in to comment.