From 9aea64c3eeef843c0fcc14bfa04c56a6a949b0e9 Mon Sep 17 00:00:00 2001
From: Matthew Jason Benson
Date: Mon, 2 May 2005 15:30:17 +0000
Subject: [PATCH] Convert some " - " to emdashes, semicolons, etc. where
appropriate.
git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@278213 13f79535-47bb-0310-9956-ffa450edef68
---
docs/manual/dirtasks.html | 2 +-
docs/manual/install.html | 6 +++---
docs/manual/intro.html | 2 +-
docs/manual/listeners.html | 2 +-
docs/manual/running.html | 2 +-
docs/manual/sysclasspath.html | 2 +-
docs/manual/tasksoverview.html | 2 +-
7 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/docs/manual/dirtasks.html b/docs/manual/dirtasks.html
index 51f54db29..38b17d7e5 100644
--- a/docs/manual/dirtasks.html
+++ b/docs/manual/dirtasks.html
@@ -106,7 +106,7 @@ For example:
/test/**
matches all files/directories under /test/
,
such as /test/x.java
,
or /test/foo/bar/xyz.html
, but not /xyz.xml
.
-There is one "shorthand" - if a pattern ends
+
There is one "shorthand": if a pattern ends
with /
or \
, then **
is appended.
diff --git a/docs/manual/install.html b/docs/manual/install.html
index 31d8c982e..ebf4812dd 100644
--- a/docs/manual/install.html
+++ b/docs/manual/install.html
@@ -128,7 +128,7 @@ will need to do:
Set the ANT_HOME
environment variable to the
directory where you installed Ant. On some operating systems the ant
wrapper scripts can guess ANT_HOME
(Unix dialects and
-Windows NT/2000) - but it is better to not rely on this behavior.
+Windows NT/2000), but it is better to not rely on this behavior.
Optionally, set the JAVA_HOME
environment variable
(see the Advanced section below).
This should be set to the directory where your JDK is installed.
@@ -370,8 +370,8 @@ you need jakarta-oro 2.0.1 or later, and commons-net<
js.jar |
Javascript with script task
- If you use Apache BSF 2.3.0-rc1, you must use rhino 1.5R3 - later
- versions of BSF work with 1.5R4 as well. |
+ If you use Apache BSF 2.3.0-rc1, you must use rhino 1.5R3 (later
+ versions of BSF work with 1.5R4 as well).
http://www.mozilla.org/rhino/ |
diff --git a/docs/manual/intro.html b/docs/manual/intro.html
index fc54e5284..1e38bc27e 100644
--- a/docs/manual/intro.html
+++ b/docs/manual/intro.html
@@ -39,7 +39,7 @@ Task interface.
Granted, this removes some of the expressive power that is inherent in being
able to construct a shell command such as
`find . -name foo -exec rm {}`
, but it
-gives you the ability to be cross-platform - to work anywhere and
+gives you the ability to be cross-platform--to work anywhere and
everywhere. And
hey, if you really need to execute a shell command, Ant has an
<exec>
task that
diff --git a/docs/manual/listeners.html b/docs/manual/listeners.html
index 58a4450a6..40c8a7b89 100644
--- a/docs/manual/listeners.html
+++ b/docs/manual/listeners.html
@@ -334,7 +334,7 @@ developers.
Notes:
- - A listener or logger should not write to standard output or error - Ant
+
- A listener or logger should not write to standard output or error; Ant
captures these internally and may cause an infinite loop.
diff --git a/docs/manual/running.html b/docs/manual/running.html
index 80f32a42a..5737d1cfd 100644
--- a/docs/manual/running.html
+++ b/docs/manual/running.html
@@ -45,7 +45,7 @@ the value specified on the
command line will override the value specified in the
build file.
Defining properties on the command line can also be used to pass in
-the value of environment variables - just pass
+the value of environment variables; just pass
-DMYVAR=%MYVAR%
(Windows) or
-DMYVAR=$MYVAR
(Unix)
to Ant. You can then access
diff --git a/docs/manual/sysclasspath.html b/docs/manual/sysclasspath.html
index 9ad79b7b0..f3374cfa8 100644
--- a/docs/manual/sysclasspath.html
+++ b/docs/manual/sysclasspath.html
@@ -53,7 +53,7 @@ the other form of compromise where the build runner has priority.
Since Ant 1.7 the value of this property also affects the
-bootclasspath settings - it combines the bootclasspath that has been
+bootclasspath settings--it combines the bootclasspath that has been
specified for a task with the bootclasspath of the Java VM running
Ant. If the property has not been set, it defaults to "ignore" in
this case.
diff --git a/docs/manual/tasksoverview.html b/docs/manual/tasksoverview.html
index fd872a180..a8c9d69fe 100644
--- a/docs/manual/tasksoverview.html
+++ b/docs/manual/tasksoverview.html
@@ -986,7 +986,7 @@ documentation.
Condition |
- Sets a property if a certain condition holds true - this is a
+ | Sets a property if a certain condition holds true; this is a
generalization of Available and
Uptodate. |