diff --git a/src/main/java/teetime/stage/opad/filter/AnomalyDetectionFilter.java b/src/main/java/teetime/stage/opad/filter/AnomalyDetectionFilter.java
index 01815d6e60bb9836269d43f376cd21afc9646787..0d6eb94649b59856ad8d99965b76318e3e706b3f 100644
--- a/src/main/java/teetime/stage/opad/filter/AnomalyDetectionFilter.java
+++ b/src/main/java/teetime/stage/opad/filter/AnomalyDetectionFilter.java
@@ -23,7 +23,7 @@ import kieker.tools.opad.record.StorableDetectionResult;
 
 /**
  *
- * This filter separates input values by their reach of a certain threshold (parameter). It takes events of type {@link StorableDetectionResult} and channels them
+ * This filter separates input values by their reach of a certain threshold (parameter). It takes events of type StorableDetectionResult and channels them
  * into two output ports, depending on whether the threshold was reached or not. This filter has configuration properties for the (critical) threshold. Although the
  * configuration of the critical threshold is possible, the value is currently not used by the filter.
  *
@@ -33,16 +33,10 @@ import kieker.tools.opad.record.StorableDetectionResult;
  */
 public class AnomalyDetectionFilter extends AbstractConsumerStage<StorableDetectionResult> {
 
-	/**
-	 * The output port delivering the normalyscore if it remains below
-	 * the threshhold.
-	 */
+	/** The output port delivering the normal score if it remains below the threshold. */
 	private final OutputPort<StorableDetectionResult> outputPortNormal = this.createOutputPort();
 
-	/**
-	 * The output port delivering the annromalyscore if it exceeds the
-	 * threshhold.
-	 */
+	/** The output port delivering the abnormal score if it exceeds the threshold. */
 	private final OutputPort<StorableDetectionResult> outputPortAnnormal = this.createOutputPort();
 
 	private final double threshold;
@@ -59,10 +53,7 @@ public class AnomalyDetectionFilter extends AbstractConsumerStage<StorableDetect
 		return threshold;
 	}
 
-	/**
-	 *
-	 * @param threshold
-	 */
+	/** @param threshold */
 	public AnomalyDetectionFilter(final double threshold) {
 		super();
 		this.threshold = threshold;