Skip to content

Commit

Permalink
[consider merging] bugfix issue #1616 - typo in DRC doc
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Koefferlein committed Feb 10, 2024
1 parent babf799 commit 1e1aa02
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/doc/doc/about/drc_ref_global.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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).
Expand Down
2 changes: 1 addition & 1 deletion src/drc/drc/built-in-macros/_drc_cop_integration.rb
Original file line number Diff line number Diff line change
Expand Up @@ -555,7 +555,7 @@ def foreign
# 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).
Expand Down

0 comments on commit 1e1aa02

Please sign in to comment.