diff --git a/apps/i2psnark/java/src/org/klomp/snark/dht/DHT.java b/apps/i2psnark/java/src/org/klomp/snark/dht/DHT.java
index 5dc1c0a62579261329e8af00741d054acb701fed..16d2edd65b3ca8f9edd9ef4463c14fe7522b6c04 100644
--- a/apps/i2psnark/java/src/org/klomp/snark/dht/DHT.java
+++ b/apps/i2psnark/java/src/org/klomp/snark/dht/DHT.java
@@ -44,7 +44,7 @@ public interface DHT {
      *  @param max maximum number of peers to return
      *  @param maxWait the maximum time to wait (ms) must be > 0
      *  @param annMax the number of peers to announce to
-     *  @param maxWait the maximum total time to wait for announces, may be 0 to return immediately without waiting for acks
+     *  @param annMaxWait the maximum total time to wait for announces, may be 0 to return immediately without waiting for acks
      *  @return possibly empty (never null)
      */
     public Collection<Hash> getPeersAndAnnounce(byte[] ih, int max, long maxWait, int annMax, long annMaxWait);
diff --git a/apps/i2psnark/java/src/org/klomp/snark/dht/KRPC.java b/apps/i2psnark/java/src/org/klomp/snark/dht/KRPC.java
index bfaf808f8886ba0fcd54603fa64d784bc569a095..e9fca89b1f94019a66c0115a23856a07bddda23d 100644
--- a/apps/i2psnark/java/src/org/klomp/snark/dht/KRPC.java
+++ b/apps/i2psnark/java/src/org/klomp/snark/dht/KRPC.java
@@ -317,7 +317,7 @@ public class KRPC implements I2PSessionMuxedListener, DHT {
      *  @param max maximum number of peers to return
      *  @param maxWait the maximum time to wait (ms) must be > 0
      *  @param annMax the number of peers to announce to
-     *  @param maxWait the maximum total time to wait for announces, may be 0 to return immediately without waiting for acks
+     *  @param annMaxWait the maximum total time to wait for announces, may be 0 to return immediately without waiting for acks
      *  @return possibly empty (never null)
      */
     public Collection<Hash> getPeersAndAnnounce(byte[] ih, int max, long maxWait, int annMax, long annMaxWait) {
diff --git a/core/java/src/net/i2p/data/Destination.java b/core/java/src/net/i2p/data/Destination.java
index 76f64304489da4ef9fbaabeac3ac3ad1467216cc..1eab390bbb09925fa1bd73a153adcc2b2c91844a 100644
--- a/core/java/src/net/i2p/data/Destination.java
+++ b/core/java/src/net/i2p/data/Destination.java
@@ -108,7 +108,7 @@ public class Destination extends KeysAndCert {
     }
     
     /**
-     * @deprecated, was used only by Packet.java in streaming, now unused
+     * @deprecated was used only by Packet.java in streaming, now unused
      *
      * @throws IllegalStateException if data already set
      */