From 178847fc53686058c76d0014b2cac8c7fb261a0f Mon Sep 17 00:00:00 2001 From: steve Date: Sat, 13 Sep 2003 01:01:51 +0000 Subject: [PATCH] Spelling fixes. --- README.txt | 2 +- elab_scope.cc | 7 +++++-- elaborate.cc | 11 +++++++---- netlist.h | 13 ++++++++----- 4 files changed, 21 insertions(+), 12 deletions(-) diff --git a/README.txt b/README.txt index 9d7e3abc7..4d9a72a21 100644 --- a/README.txt +++ b/README.txt @@ -432,7 +432,7 @@ language that are defined. by arranging for always statements with ANYEDGE sensitivity lists to be scheduled before any other threads. This causes combinational always blocks to be triggered when the values in - the sensitivity list are initialzed by initial threads. + the sensitivity list are initialized by initial threads. 6.0 CREDITS diff --git a/elab_scope.cc b/elab_scope.cc index 864b49288..609c12208 100644 --- a/elab_scope.cc +++ b/elab_scope.cc @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ #ifdef HAVE_CVS_IDENT -#ident "$Id: elab_scope.cc,v 1.26 2003/08/28 04:11:17 steve Exp $" +#ident "$Id: elab_scope.cc,v 1.27 2003/09/13 01:01:51 steve Exp $" #endif # include "config.h" @@ -364,7 +364,7 @@ void PGModule::elaborate_scope_mod_(Design*des, Module*mod, NetScope*sc) const /* * Elaborate the datum within the module. This variable may be - * within a subscope (i.e. a function or task) so use the components + * within a subscope (i.e., a function or task) so use the components * of the name to find the precise scope where this item goes. */ void PData::elaborate_scope(Design*des, NetScope*scope) const @@ -549,6 +549,9 @@ void PWhile::elaborate_scope(Design*des, NetScope*scope) const /* * $Log: elab_scope.cc,v $ + * Revision 1.27 2003/09/13 01:01:51 steve + * Spelling fixes. + * * Revision 1.26 2003/08/28 04:11:17 steve * Spelling patch. * diff --git a/elaborate.cc b/elaborate.cc index 2c2fd1f54..702c953f8 100644 --- a/elaborate.cc +++ b/elaborate.cc @@ -17,7 +17,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ #ifdef HAVE_CVS_IDENT -#ident "$Id: elaborate.cc,v 1.287 2003/09/04 20:28:05 steve Exp $" +#ident "$Id: elaborate.cc,v 1.288 2003/09/13 01:01:51 steve Exp $" #endif # include "config.h" @@ -133,7 +133,7 @@ void PGAssign::elaborate(Design*des, NetScope*scope) const } } - /* If the nets are different type (i.e., reg vs tri) then + /* If the nets are different type (i.e., reg vs. tri) then a driver is needed. */ if (rid->type() != lval->type()) need_driver_flag = true; @@ -1162,7 +1162,7 @@ NetProc* PAssignNB::elaborate(Design*des, NetScope*scope) const if (delay_ != 0) delay = elaborate_delay_expr(delay_, des, scope); - /* All done with this node. mark its line number and check it in. */ + /* All done with this node. Mark its line number and check it in. */ NetAssignNB*cur = new NetAssignNB(lv, rv); cur->set_delay(delay); cur->set_line(*this); @@ -2043,7 +2043,7 @@ NetProc* PEventStatement::elaborate_wait(Design*des, NetScope*scope, NetWhile*loop = new NetWhile(expr, wait); loop->set_line(*this); - /* If there is no real substatement (i.e. "wait (foo) ;") then + /* If there is no real substatement (i.e., "wait (foo) ;") then we are done. */ if (enet == 0) return loop; @@ -2615,6 +2615,9 @@ Design* elaborate(listroots) /* * $Log: elaborate.cc,v $ + * Revision 1.288 2003/09/13 01:01:51 steve + * Spelling fixes. + * * Revision 1.287 2003/09/04 20:28:05 steve * Support time0 resolution of combinational threads. * diff --git a/netlist.h b/netlist.h index fe8b9222a..3fc1bbde0 100644 --- a/netlist.h +++ b/netlist.h @@ -19,7 +19,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ #ifdef HAVE_CVS_IDENT -#ident "$Id: netlist.h,v 1.298 2003/08/28 04:11:19 steve Exp $" +#ident "$Id: netlist.h,v 1.299 2003/09/13 01:01:52 steve Exp $" #endif /* @@ -316,7 +316,7 @@ class NexusSet { /* * A NetNode is a device of some sort, where each pin has a different - * meaning. (i.e. pin(0) is the output to an and gate.) NetNode + * meaning. (i.e., pin(0) is the output to an and gate.) NetNode * objects are listed in the nodes_ of the Design object. */ class NetNode : public NetObj { @@ -3065,7 +3065,7 @@ class NetScope : public Attrib { const char*module_name() const; /* Scopes have their own time units and time precision. The - unit and precision are given as power of 10, i.e. -3 is + unit and precision are given as power of 10, i.e., -3 is units of milliseconds. If a NetScope is created with a parent scope, the new scope @@ -3185,7 +3185,7 @@ class Design { the delay value scaled to the precision of the design. */ unsigned long scale_to_precision(unsigned long, const NetScope*)const; - /* look up a scope. If no starting scope is passed, then the + /* Look up a scope. If no starting scope is passed, then the path is taken as an absolute scope name. Otherwise, the scope is located starting at the passed scope and working up if needed. */ @@ -3300,7 +3300,7 @@ extern void connect(Link&, Link&); inline bool connected(const Link&l, const Link&r) { return l.is_linked(r); } -/* return the number of links in the ring that are of the specified +/* Return the number of links in the ring that are of the specified type. */ extern unsigned count_inputs(const Link&pin); extern unsigned count_outputs(const Link&pin); @@ -3322,6 +3322,9 @@ extern ostream& operator << (ostream&, NetNet::Type); /* * $Log: netlist.h,v $ + * Revision 1.299 2003/09/13 01:01:52 steve + * Spelling fixes. + * * Revision 1.298 2003/08/28 04:11:19 steve * Spelling patch. *