From 861a6fdfcc4bd0219a46e4b546e5a9759124a912 Mon Sep 17 00:00:00 2001
From: Matthias Koefferlein
Date: Sat, 2 Nov 2019 22:35:19 +0100
Subject: [PATCH] Fixed a typo in the DRC documentation.
---
src/lay/lay/doc/manual/drc_runsets.xml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/lay/lay/doc/manual/drc_runsets.xml b/src/lay/lay/doc/manual/drc_runsets.xml
index d887d7788..57ede77ad 100644
--- a/src/lay/lay/doc/manual/drc_runsets.xml
+++ b/src/lay/lay/doc/manual/drc_runsets.xml
@@ -602,7 +602,7 @@ overlaps = layer.size(0.2).raw.merged(2)
While the runset is executed, a log is written that lists the methods and their execution times.
The log is enabled using the verbose function.
The log and info functions
- allows enterin additional information into the log. "info" will enter the message if verbose mode is enabled.
+ allows entering additional information into the log. "info" will enter the message if verbose mode is enabled.
"log" will enter the message always. silent is equivalent to
"verbose(false)".
@@ -618,7 +618,7 @@ overlaps = layer.size(0.2).raw.merged(2)
...
drc_w = input(1, 0).width(0.2)
- log("Number of width violations: #{drc_w.size}")
+ log("Number of width violations: #{drc_w.data.size}")
...