diff --git a/src/java/com/threerings/presents/tools/marshaller_as.tmpl b/src/java/com/threerings/presents/tools/marshaller_as.tmpl index fb1942972..4f5603def 100644 --- a/src/java/com/threerings/presents/tools/marshaller_as.tmpl +++ b/src/java/com/threerings/presents/tools/marshaller_as.tmpl @@ -5,7 +5,7 @@ import $import; #end /** - * Provides the implementation of the {@link ${name}Service} interface + * Provides the implementation of the ${name}Service interface * that marshalls the arguments and delivers the request to the provider * on the server. Also provides an implementation of the response listener * interfaces that marshall the response arguments and deliver them back @@ -18,7 +18,7 @@ public class ${name}Marshaller extends InvocationMarshaller #if ($velocityCount > 1) #end - /** The method id used to dispatch {@link #$m.method.name} requests. */ + /** The method id used to dispatch $m.method.name requests. */ public static const $m.code :int = $velocityCount; // from interface ${name}Service diff --git a/src/java/com/threerings/presents/tools/marshaller_listener_as.tmpl b/src/java/com/threerings/presents/tools/marshaller_listener_as.tmpl index ac771ed0a..6aa510e84 100644 --- a/src/java/com/threerings/presents/tools/marshaller_listener_as.tmpl +++ b/src/java/com/threerings/presents/tools/marshaller_listener_as.tmpl @@ -11,7 +11,7 @@ public class ${name}Marshaller_${listener.name}Marshaller extends InvocationMarshaller_ListenerMarshaller { #foreach ($lm in $listener.methods) - /** The method id used to dispatch {@link #$lm.method.name} responses. */ + /** The method id used to dispatch $lm.method.name responses. */ public static const $lm.code :int = $velocityCount; #end