Fix comment on gatekeeper retry timeout schedule.
Test: comment change only
Change-Id: Ibc6573f70f380d2422b0d838b2c8db6ced84fea9
diff --git a/gatekeeper.cpp b/gatekeeper.cpp
index 0d19816..052c4db 100644
--- a/gatekeeper.cpp
+++ b/gatekeeper.cpp
@@ -254,11 +254,11 @@
* Calculates the timeout in milliseconds as a function of the failure
* counter 'x' as follows:
*
- * [0. 5) -> 0
+ * [0, 4] -> 0
* 5 -> 30
- * [6, 10) -> 0
- * [11, 30) -> 30
- * [30, 140) -> 30 * (2^((x - 30)/10))
+ * [6, 10] -> 0
+ * [11, 29] -> 30
+ * [30, 139] -> 30 * (2^((x - 30)/10))
* [140, inf) -> 1 day
*
*/