From mboxrd@z Thu Jan 1 00:00:00 1970
Return-Path:
Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80])
by finch.gentoo.org (Postfix) with ESMTP id D40691381F3
for ; Sun, 12 May 2013 19:25:12 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
by pigeon.gentoo.org (Postfix) with SMTP id B13ABE0877;
Sun, 12 May 2013 19:25:09 +0000 (UTC)
Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183])
(using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits))
(No client certificate requested)
by pigeon.gentoo.org (Postfix) with ESMTPS id 39187E0876
for ; Sun, 12 May 2013 19:25:09 +0000 (UTC)
Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163])
(using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits))
(No client certificate requested)
by smtp.gentoo.org (Postfix) with ESMTPS id 2321033BE5C
for ; Sun, 12 May 2013 19:25:08 +0000 (UTC)
Received: from localhost.localdomain (localhost [127.0.0.1])
by hornbill.gentoo.org (Postfix) with ESMTP id 8CB4CE53D6
for ; Sun, 12 May 2013 19:25:06 +0000 (UTC)
From: "Markos Chandras"
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Markos Chandras"
Message-ID: <1368385390.cb6371eb9f4d8dbeee6a82d73bfd1ef54602e905.hwoarang@gentoo>
Subject: [gentoo-commits] proj/devmanual:master commit in: tools-reference/find/, archs/amd64/
X-VCS-Repository: proj/devmanual
X-VCS-Files: archs/amd64/text.xml tools-reference/find/text.xml
X-VCS-Directories: tools-reference/find/ archs/amd64/
X-VCS-Committer: hwoarang
X-VCS-Committer-Name: Markos Chandras
X-VCS-Revision: cb6371eb9f4d8dbeee6a82d73bfd1ef54602e905
X-VCS-Branch: master
Date: Sun, 12 May 2013 19:25:06 +0000 (UTC)
Precedence: bulk
List-Post:
List-Help:
List-Unsubscribe:
List-Subscribe:
List-Id: Gentoo Linux mail
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Archives-Salt: 98ca1aa8-3984-455f-8a1d-66198ca2b0dc
X-Archives-Hash: ef77cfeb6316c541c1b7c3b4f0cd0697
commit: cb6371eb9f4d8dbeee6a82d73bfd1ef54602e905
Author: Nicolas Kaiser nikai net>
AuthorDate: Sun May 12 19:03:10 2013 +0000
Commit: Markos Chandras gentoo org>
CommitDate: Sun May 12 19:03:10 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/devmanual.git;a=commit;h=cb6371eb
fix duplications and typos
---
archs/amd64/text.xml | 4 ++--
tools-reference/find/text.xml | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/archs/amd64/text.xml b/archs/amd64/text.xml
index 12e773b..3019b4b 100644
--- a/archs/amd64/text.xml
+++ b/archs/amd64/text.xml
@@ -416,7 +416,7 @@ applications and libraries, we treat /usr/include/asm a bit special.
-This is what /usr/include/asm/types.h looks like on a AMD64 box:
+This is what /usr/include/asm/types.h looks like on an AMD64 box:
@@ -432,7 +432,7 @@ This is what /usr/include/asm/types.h looks like on a AMD64 box:
As you can see, this is just a wrapper that decides which file you need
-depending on the the parameter -D given to gcc. You'll probably run into
+depending on the parameter -D given to gcc. You'll probably run into
some troubles if you try to compile something by hand and forget to append
-D__x86_64__ to your CFLAGS. Of course, this is not necessary when
using portage. For an explanation, see the
diff --git a/tools-reference/find/text.xml b/tools-reference/find/text.xml
index 9c25dbc..4172128 100644
--- a/tools-reference/find/text.xml
+++ b/tools-reference/find/text.xml
@@ -92,7 +92,7 @@ Useful rules include:
-exec foo '{}'
- Execute a command. {} is replaced replaced by the name of the
+ Execute a command. {} is replaced by the name of the
current matched file. See examples below.
yes
@@ -157,7 +157,7 @@ find "${S}" -name '*.data' -exec mv '{}' "${S}/data/" \;
When -exec is terminated by a ; character
-(needs escaping or quoting) then the command line is built seperately
+(needs escaping or quoting) then the command line is built separately
for every match.
If it is terminated by a + character then the command line is
built by appending each selected file name at the end.