From 45e77ce40ca2fcfb4e32425c87426ce2c5b0cbd1 Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Mon, 27 May 2024 19:02:38 +0200 Subject: [PATCH] Fixed a typo --- src/db/db/dbLayoutToNetlist.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/db/db/dbLayoutToNetlist.cc b/src/db/db/dbLayoutToNetlist.cc index 9275b442f..86b7d50ab 100644 --- a/src/db/db/dbLayoutToNetlist.cc +++ b/src/db/db/dbLayoutToNetlist.cc @@ -1018,7 +1018,7 @@ void LayoutToNetlist::register_layer (const ShapeCollection &collection, const s throw tl::Exception (tl::to_string (tr ("Layer name is already used: ")) + n_in); } - // Caution: this make create names which clash with future explicit names. Hopefully, the generated names are unique enough. + // Caution: this may create names which clash with future explicit names. Hopefully, the generated names are unique enough. std::string n = n_in.empty () ? make_new_name () : n_in; db::DeepLayer dl;