[consider merging] bugfix issue #1616 - typo in DRC doc

This commit is contained in:
Matthias Koefferlein 2024-02-10 18:48:44 +01:00
parent 5d74a5e8c6
commit 3d9b665263
2 changed files with 2 additions and 2 deletions

View File

@ -828,7 +828,7 @@ The following example selects all shapes which are rectangles and
whose area is larger than 0.5 square micrometers:
</p><p>
<pre>
out = in.drc(if_all(area &gt; 0.5, rectangle))
out = in.drc(if_all(area &gt; 0.5, rectangles))
</pre>
</p><p>
The condition expressions may be of any type (edges, edge pairs and polygons).

View File

@ -555,7 +555,7 @@ module DRC
# whose area is larger than 0.5 square micrometers:
#
# @code
# out = in.drc(if_all(area > 0.5, rectangle))
# out = in.drc(if_all(area > 0.5, rectangles))
# @/code
#
# The condition expressions may be of any type (edges, edge pairs and polygons).