mirror of https://github.com/KLayout/klayout.git
[consider merging] bugfix issue #1616 - typo in DRC doc
This commit is contained in:
parent
5d74a5e8c6
commit
3d9b665263
|
|
@ -828,7 +828,7 @@ The following example selects all shapes which are rectangles and
|
||||||
whose area is larger than 0.5 square micrometers:
|
whose area is larger than 0.5 square micrometers:
|
||||||
</p><p>
|
</p><p>
|
||||||
<pre>
|
<pre>
|
||||||
out = in.drc(if_all(area > 0.5, rectangle))
|
out = in.drc(if_all(area > 0.5, rectangles))
|
||||||
</pre>
|
</pre>
|
||||||
</p><p>
|
</p><p>
|
||||||
The condition expressions may be of any type (edges, edge pairs and polygons).
|
The condition expressions may be of any type (edges, edge pairs and polygons).
|
||||||
|
|
|
||||||
|
|
@ -555,7 +555,7 @@ module DRC
|
||||||
# whose area is larger than 0.5 square micrometers:
|
# whose area is larger than 0.5 square micrometers:
|
||||||
#
|
#
|
||||||
# @code
|
# @code
|
||||||
# out = in.drc(if_all(area > 0.5, rectangle))
|
# out = in.drc(if_all(area > 0.5, rectangles))
|
||||||
# @/code
|
# @/code
|
||||||
#
|
#
|
||||||
# The condition expressions may be of any type (edges, edge pairs and polygons).
|
# The condition expressions may be of any type (edges, edge pairs and polygons).
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue