From e7ea34b930068c4adba354830dc3f93efd9dd8fb Mon Sep 17 00:00:00 2001 From: Magesh Umasankar Date: Mon, 28 Jan 2002 19:50:32 +0000 Subject: [PATCH] Fix typos git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@270997 13f79535-47bb-0310-9956-ffa450edef68 --- docs/manual/CoreTasks/input.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/manual/CoreTasks/input.html b/docs/manual/CoreTasks/input.html index 92111bc96..8a14bbcd9 100644 --- a/docs/manual/CoreTasks/input.html +++ b/docs/manual/CoreTasks/input.html @@ -68,14 +68,14 @@ the build run until return key is pressed.

validargs="y,n" addproperty="do.delete" /> - <condition propert="do.abort"> + <condition property="do.abort"> <equals arg1="n" arg2="${do.delete}" /> </condition> - <fail if="do.abort">Build abborted by user.</fail> + <fail if="do.abort">Build aborted by user.</fail>

Will display the message "All data is going to be deleted from DB continue (y/n)?" and require 'y+retrun key' to continue build or 'n+return key' -to exit build with following message "Build abborted by user.".

+to exit build with following message "Build aborted by user.".

  <input
     message="Please enter db-username:"
     addproperty="db.user"