This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Minor typos in {gcc,extend}.texi


2000-07-08  Rodney Brown  <RodneyBrown@pmsc.com>
	* gcc.texi: Fix minor typos
	# extend.texi: Fix minor typos

--- gcc/extend.texi.bak	Tue May 30 18:47:25 2000
+++ gcc/extend.texi	Sat Jul  8 10:05:00 2000
@@ -813,7 +813,7 @@
 @section Hex Floats
 @cindex hex floats
 
-GNU CC recognizes floating-point numbers writen not only in the usual
+GNU CC recognizes floating-point numbers written not only in the usual
 decimal notation, such as @code{1.55e1}, but also numbers such as
 @code{0x1.fp3} written in hexadecimal format.  In that format the
 @code{0x} hex introducer and the @code{p} or @code{P} exponent field are
@@ -1310,7 +1310,7 @@
 @cindex functions that never return
 @cindex functions that have no side effects
 @cindex functions in arbitrary sections
-@cindex functions that bahave like malloc
+@cindex functions that behave like malloc
 @cindex @code{volatile} applied to function
 @cindex @code{const} applied to function
 @cindex functions with @code{printf}, @code{scanf} or @code{strftime} style arguments
@@ -1399,7 +1399,7 @@
 Some of common examples of pure functions are @code{strlen} or @code{memcmp}.
 Interesting non-pure functions are functions with infinite loops or those
 depending on volatile memory or other system resource, that may change between
-two consetuctive calls (such as @code{feof} in multithreding environment).
+two consecutive calls (such as @code{feof} in a multithreading environment).
 
 The attribute @code{pure} is not implemented in GNU C versions earlier
 than 2.96.
@@ -1408,7 +1408,7 @@
 Many functions do not examine any values except their arguments, and
 have no effects except the return value.  Basically this is just slightly
 more strict class than the "pure" attribute above, since function is not
-alloved to read global memory.
+allowed to read global memory.
 
 @cindex pointer arguments
 Note that a function that has pointer arguments and examines the data
@@ -2073,7 +2073,7 @@
 
 @item shared
 @cindex @code{shared} variable attribute
-On Windows NT, in addition to nputting variable definitions in a named 
+On Windows NT, in addition to putting variable definitions in a named 
 section, the section can also be shared among all running copies of an 
 executable or DLL. For example, this small program defines shared data 
 by putting it in a named section "shared" and marking the section 
--- gcc/gcc.texi.bak	Fri Jun 23 22:31:24 2000
+++ gcc/gcc.texi	Thu Jul  6 21:26:33 2000
@@ -1013,7 +1013,7 @@
 PTF U403044 from IBM and users of AIX 3.2 should request PTF U416277.
 See the file @file{README.RS6000} for more details on these updates.
 
-You can test for the presense of a fixed assembler by using the
+You can test for the presence of a fixed assembler by using the
 command
 
 @smallexample
@@ -1861,7 +1861,7 @@
 @code{unprotoize} can become confused when trying to convert a function
 definition or declaration which contains a declaration for a
 pointer-to-function formal argument which has the same name as the
-function being defined or declared.  We recommand you avoid such choices
+function being defined or declared.  We recommend you avoid such choices
 of formal parameter names.
 
 @item

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]