Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/pdn/src/straps.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -99,8 +99,9 @@ void Straps::checkLayerSpecifications() const
getLogger()->error(
utl::PDN,
175,
"Pitch {:.4f} is too small for, must be atleast {:.4f}",
"Pitch {:.4f} is too small for {}, must be atleast {:.4f}",

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

There is a minor typo in the error message: "atleast" should be written as two words ("at least").

Suggested change
"Pitch {:.4f} is too small for {}, must be atleast {:.4f}",
"Pitch {:.4f} is too small for {}, must be at least {:.4f}",

layer.dbuToMicron(pitch_),
layer_->getName(),
layer.dbuToMicron(min_pitch));
}
}
Expand Down
Loading