From bc0ead28424bff67cf860d5e33c94e299920867c Mon Sep 17 00:00:00 2001 From: steve Date: Sat, 8 Nov 2003 20:06:21 +0000 Subject: [PATCH] Spelling fixes in comments. --- _pli_types.h.in | 9 ++++++--- compiler.h | 7 +++++-- ivl_target.h | 7 +++++-- netlist.h | 13 ++++++++----- 4 files changed, 24 insertions(+), 12 deletions(-) diff --git a/_pli_types.h.in b/_pli_types.h.in index 276d253a8..2e4bd3d62 100644 --- a/_pli_types.h.in +++ b/_pli_types.h.in @@ -19,7 +19,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ #ifdef HAVE_CVS_IDENT -#ident "$Id: _pli_types.h.in,v 1.5 2003/10/29 03:28:27 steve Exp $" +#ident "$Id: _pli_types.h.in,v 1.6 2003/11/08 20:06:21 steve Exp $" #endif # undef HAVE_INTTYPES_H @@ -27,7 +27,7 @@ #ifdef HAVE_INTTYPES_H /* - * If the host enhironment has the stdint.h header file, + * If the host environment has the stdint.h header file, * then use that to size our PLI types. */ #ifndef __STDC_FORMAT_MACROS @@ -51,7 +51,7 @@ typedef unsigned char PLI_UBYTE8; /* * If we do not have the c99 stdint.h header file, then use - * configure detenction to guess the pli types ourselves. + * configure detection to guess the pli types ourselves. */ # define SIZEOF_UNSIGNED_LONG_LONG 8 @@ -90,6 +90,9 @@ typedef unsigned char PLI_UBYTE8; /* * $Log: _pli_types.h.in,v $ + * Revision 1.6 2003/11/08 20:06:21 steve + * Spelling fixes in comments. + * * Revision 1.5 2003/10/29 03:28:27 steve * Add the PLU_UINT64_FMT string for formatting output. * diff --git a/compiler.h b/compiler.h index b5b10c9dc..731bc191a 100644 --- a/compiler.h +++ b/compiler.h @@ -19,7 +19,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ #ifdef HAVE_CVS_IDENT -#ident "$Id: compiler.h,v 1.17 2003/09/25 00:25:14 steve Exp $" +#ident "$Id: compiler.h,v 1.18 2003/11/08 20:06:21 steve Exp $" #endif # include @@ -64,7 +64,7 @@ /* * These are flags to enable various sorts of warnings. By default all - * the warnings are of, the -W parameter arranges for each to be + * the warnings are off, the -W parameter arranges for each to be * enabled. */ @@ -105,6 +105,9 @@ extern StringHeapLex lex_strings; /* * $Log: compiler.h,v $ + * Revision 1.18 2003/11/08 20:06:21 steve + * Spelling fixes in comments. + * * Revision 1.17 2003/09/25 00:25:14 steve * Summary list of missing modules. * diff --git a/ivl_target.h b/ivl_target.h index f4665febe..603843288 100644 --- a/ivl_target.h +++ b/ivl_target.h @@ -19,7 +19,7 @@ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA */ #ifdef HAVE_CVS_IDENT -#ident "$Id: ivl_target.h,v 1.122 2003/08/22 23:14:26 steve Exp $" +#ident "$Id: ivl_target.h,v 1.123 2003/11/08 20:06:21 steve Exp $" #endif #ifdef __cplusplus @@ -85,7 +85,7 @@ _BEGIN_DECL * ivl_net_logic_t * This object represents various built in logic devices. In fact, * this includes just about every directional device that has a - * single output, including logic gates and nmos, pmos and cmon + * single output, including logic gates and nmos, pmos and cmos * devices. There is also the occasional Icarus Verilog creation. * * ivl_nexus_t @@ -1232,6 +1232,9 @@ _END_DECL /* * $Log: ivl_target.h,v $ + * Revision 1.123 2003/11/08 20:06:21 steve + * Spelling fixes in comments. + * * Revision 1.122 2003/08/22 23:14:26 steve * Preserve variable ranges all the way to the vpi. * diff --git a/netlist.h b/netlist.h index a56dac602..80c3b848d 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.304 2003/10/31 02:47:11 steve Exp $" +#ident "$Id: netlist.h,v 1.305 2003/11/08 20:06:21 steve Exp $" #endif /* @@ -86,7 +86,7 @@ class NetObj : public Attrib, public virtual LineInfo { public: public: - // The name of the object must be a a perallocated string. A + // The name of the object must be a permallocated string. A // lex_strings string, for example. explicit NetObj(NetScope*s, const char*n, unsigned npins); virtual ~NetObj(); @@ -207,7 +207,7 @@ class Link { verinum::V init_; // These members name the pin of the link. If the name - // has width, then the ninst_ member is the index of the + // has width, then the inst_ member is the index of the // pin. string name_; unsigned inst_; @@ -322,7 +322,7 @@ class NexusSet { class NetNode : public NetObj { public: - // The name paramter must be a permallocated string. + // The name parameter must be a permallocated string. explicit NetNode(NetScope*s, const char*n, unsigned npins); virtual ~NetNode(); @@ -1637,7 +1637,7 @@ class NetCAssign : public NetProc, public NetNode { /* * A condit represents a conditional. It has an expression to test, * and a pair of statements to select from. If the original statement - * has empty clauses, then the NetProc for it will be a nul pointer. + * has empty clauses, then the NetProc for it will be a null pointer. */ class NetCondit : public NetProc { @@ -3310,6 +3310,9 @@ extern ostream& operator << (ostream&, NetNet::Type); /* * $Log: netlist.h,v $ + * Revision 1.305 2003/11/08 20:06:21 steve + * Spelling fixes in comments. + * * Revision 1.304 2003/10/31 02:47:11 steve * NetEUReduce has its own dup_expr method. *