From 97b94390e4923bbb3f0322cb9a4e7125572ad758 Mon Sep 17 00:00:00 2001 From: Matthew Jason Benson Date: Fri, 5 Aug 2005 15:41:57 +0000 Subject: [PATCH] Javadoc git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@278489 13f79535-47bb-0310-9956-ffa450edef68 --- src/main/org/apache/tools/ant/types/resources/Touchable.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/org/apache/tools/ant/types/resources/Touchable.java b/src/main/org/apache/tools/ant/types/resources/Touchable.java index 5ee29bb39..86fb11837 100755 --- a/src/main/org/apache/tools/ant/types/resources/Touchable.java +++ b/src/main/org/apache/tools/ant/types/resources/Touchable.java @@ -18,9 +18,9 @@ package org.apache.tools.ant.types.resources; /** * Interface to be implemented by "touchable" resources; - * for example those whose modification time can be altered. + * that is, those whose modification time can be altered. * @since Ant 1.7 */ public interface Touchable { void touch(long modTime); -} \ No newline at end of file +}