public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [PATCH] doc/generic.texi: Fix typo
@ 2014-08-29  6:03 Honggyu Kim
  2014-08-29 22:39 ` Mike Stump
  0 siblings, 1 reply; 6+ messages in thread
From: Honggyu Kim @ 2014-08-29  6:03 UTC (permalink / raw)
  To: gcc-patches; +Cc: Honggyu Kim

This fixes some typo errors in the gcc internal document.

2014-08-29  Honggyu Kim  <hong.gyu.kim@lge.com>

	* doc/generic.texi: Fix typo.
---
 gcc/ChangeLog        |    4 ++++
 gcc/doc/generic.texi |    2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/gcc/ChangeLog b/gcc/ChangeLog
index ac5dc7c..01698e6 100644
--- a/gcc/ChangeLog
+++ b/gcc/ChangeLog
@@ -1,3 +1,7 @@
+2014-08-29  Honggyu Kim  <hong.gyu.kim@lge.com>
+
+	* doc/generic.texi: Fix typo.
+
 2014-08-29  David Malcolm  <dmalcolm@redhat.com>
 
 	PR bootstrap/62300
diff --git a/gcc/doc/generic.texi b/gcc/doc/generic.texi
index 4476f28..a598500 100644
--- a/gcc/doc/generic.texi
+++ b/gcc/doc/generic.texi
@@ -53,7 +53,7 @@ seems inelegant.
 @node Deficiencies
 @section Deficiencies
 
-There are many places in which this document is incomplet and incorrekt.
+There are many places in which this document is incomplete or incorrect.
 It is, as of yet, only @emph{preliminary} documentation.
 
 @c ---------------------------------------------------------------------
-- 
1.7.9.5

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] doc/generic.texi: Fix typo
  2014-08-29  6:03 [PATCH] doc/generic.texi: Fix typo Honggyu Kim
@ 2014-08-29 22:39 ` Mike Stump
  2014-08-31 20:50   ` Gerald Pfeifer
  0 siblings, 1 reply; 6+ messages in thread
From: Mike Stump @ 2014-08-29 22:39 UTC (permalink / raw)
  To: Honggyu Kim; +Cc: gcc-patches

On Aug 28, 2014, at 11:03 PM, Honggyu Kim <hong.gyu.kim@lge.com> wrote:
> This fixes some typo errors in the gcc internal document.

These errors are on purpose.

> -There are many places in which this document is incomplet and incorrekt.
> +There are many places in which this document is incomplete or incorrect.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] doc/generic.texi: Fix typo
  2014-08-29 22:39 ` Mike Stump
@ 2014-08-31 20:50   ` Gerald Pfeifer
  2014-08-31 22:11     ` Robert Dewar
  2014-09-01  0:40     ` Honggyu Kim
  0 siblings, 2 replies; 6+ messages in thread
From: Gerald Pfeifer @ 2014-08-31 20:50 UTC (permalink / raw)
  To: Mike Stump; +Cc: Honggyu Kim, gcc-patches

On Fri, 29 Aug 2014, Mike Stump wrote:
> These errors are on purpose.
> 
>> -There are many places in which this document is incomplet and incorrekt.
>> +There are many places in which this document is incomplete or incorrect.

Since this now came up for the second time this year, I went ahead
and applied the patch below.

Gerald


2014-08-31  Gerald Pfeifer  <gerald@pfeifer.com>

	* doc/generic.texi (Deficiencies): Add note on exemplary mistakes.

Index: doc/generic.texi
===================================================================
--- doc/generic.texi	(revision 214765)
+++ doc/generic.texi	(working copy)
@@ -53,6 +53,7 @@
 @node Deficiencies
 @section Deficiencies
 
+@c The spelling of "incomplet" and "incorrekt" below is intentional.
 There are many places in which this document is incomplet and incorrekt.
 It is, as of yet, only @emph{preliminary} documentation.
 

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] doc/generic.texi: Fix typo
  2014-08-31 20:50   ` Gerald Pfeifer
@ 2014-08-31 22:11     ` Robert Dewar
  2014-09-01  0:37       ` Honggyu Kim
  2014-09-01  0:40     ` Honggyu Kim
  1 sibling, 1 reply; 6+ messages in thread
From: Robert Dewar @ 2014-08-31 22:11 UTC (permalink / raw)
  To: Gerald Pfeifer, Mike Stump; +Cc: Honggyu Kim, gcc-patches

On 8/31/2014 4:49 PM, Gerald Pfeifer wrote:
> On Fri, 29 Aug 2014, Mike Stump wrote:
>> These errors are on purpose.

Surprising that someone would not get this obvious clever joke.
>>
>>> -There are many places in which this document is incomplet and incorrekt.
>>> +There are many places in which this document is incomplete or incorrect.
>
> Since this now came up for the second time this year, I went ahead
> and applied the patch below.

Seems a shame that anyone should need an explanation, but oh well :-)

P.S. my favorite instance of this kind of documentation is an early
IBM Fortran manual, which says that you should put exactly the character
you want to see come out on the printer [in some context], "e.g. an I 
for an I and a 2 for a 2." :-)

^ permalink raw reply	[flat|nested] 6+ messages in thread

* RE: [PATCH] doc/generic.texi: Fix typo
  2014-08-31 22:11     ` Robert Dewar
@ 2014-09-01  0:37       ` Honggyu Kim
  0 siblings, 0 replies; 6+ messages in thread
From: Honggyu Kim @ 2014-09-01  0:37 UTC (permalink / raw)
  To: 'Robert Dewar', 'Gerald Pfeifer', 'Mike Stump'
  Cc: gcc-patches

On 9/1/2014 7:11 AM, Robert Dewar wrote:

> Seems a shame that anyone should need an explanation, but oh well :-)
Sorry about that. I should have thought about it twice :)

> P.S. my favorite instance of this kind of documentation is an early IBM
> Fortran manual, which says that you should put exactly the character you
> want to see come out on the printer [in some context], "e.g. an I for an I
> and a 2 for a 2." :-)
Maybe I should learn something for that document :)

Thanks,
 
Honggyu

^ permalink raw reply	[flat|nested] 6+ messages in thread

* RE: [PATCH] doc/generic.texi: Fix typo
  2014-08-31 20:50   ` Gerald Pfeifer
  2014-08-31 22:11     ` Robert Dewar
@ 2014-09-01  0:40     ` Honggyu Kim
  1 sibling, 0 replies; 6+ messages in thread
From: Honggyu Kim @ 2014-09-01  0:40 UTC (permalink / raw)
  To: 'Gerald Pfeifer', 'Mike Stump'; +Cc: gcc-patches

On 9/1/2014 5:50 AM, Gerald Pfeifer wrote:

> Since this now came up for the second time this year, I went ahead and
> applied the patch below.
Thanks for the comment :)

Honggyu

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2014-09-01  0:40 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-08-29  6:03 [PATCH] doc/generic.texi: Fix typo Honggyu Kim
2014-08-29 22:39 ` Mike Stump
2014-08-31 20:50   ` Gerald Pfeifer
2014-08-31 22:11     ` Robert Dewar
2014-09-01  0:37       ` Honggyu Kim
2014-09-01  0:40     ` Honggyu Kim

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).