From 1bf63b2e7e44464e593d30abea18f476bfea176f Mon Sep 17 00:00:00 2001 From: Antoine Levy-Lambert Date: Sun, 27 Apr 2003 20:16:20 +0000 Subject: [PATCH] fixed 2 javadoc typos git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@274521 13f79535-47bb-0310-9956-ffa450edef68 --- .../antlib/src/main/org/apache/tools/ant/SymbolTable.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/proposal/sandbox/antlib/src/main/org/apache/tools/ant/SymbolTable.java b/proposal/sandbox/antlib/src/main/org/apache/tools/ant/SymbolTable.java index ecbb0984d..aa6fd78bd 100644 --- a/proposal/sandbox/antlib/src/main/org/apache/tools/ant/SymbolTable.java +++ b/proposal/sandbox/antlib/src/main/org/apache/tools/ant/SymbolTable.java @@ -95,7 +95,7 @@ public class SymbolTable { /** * Create a symbol table inheriting the definitions * from that defined in the calling Project. - * @param p the calling project + * @param st the calling project */ public SymbolTable(SymbolTable st) { parentTable = st; @@ -389,7 +389,7 @@ public class SymbolTable { public static interface Factory { /** * Creates an object for the Role - * @param the project in which it is created + * @param p the project in which it is created * @return the instantiated object with a proxy if necessary */ public Object create(Project p);