X-Git-Url: http://cvs.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/blobdiff_plain/3b2fee43ea7d9e08b7729d662d8d010ee0e2a2e3..28093ebc109b52c8615ede29dcec3945ef8fe0cc:/fpga/min_max_tracker.v

diff --git a/fpga/min_max_tracker.v b/fpga/min_max_tracker.v
index 516f0d6f..8abd40fb 100644
--- a/fpga/min_max_tracker.v
+++ b/fpga/min_max_tracker.v
@@ -11,7 +11,7 @@
 // (resp. low peak) is reached/detected, since you can't know it isn't a
 // local minima (resp. maxima) until then.
 // This also means the peaks are detected with an unpredictable delay.
-// This algorithm can't therefore be used directly for realtime peak detections,
+// This algorithm therefore can't be used directly for realtime peak detections,
 // but it can be used as a simple envelope follower.
 module min_max_tracker(input clk, input [7:0] adc_d, input [7:0] threshold,
 	output [7:0] min, output [7:0] max);