From ac0718079d44b8a82e7f8aa8f36c67e8a530f192 Mon Sep 17 00:00:00 2001 From: jianglai Date: Fri, 29 Sep 2017 08:50:34 -0700 Subject: [PATCH] Fix typo ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=170487675 --- .../google/registry/monitoring/metrics/IncrementableMetric.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/google/registry/monitoring/metrics/IncrementableMetric.java b/java/google/registry/monitoring/metrics/IncrementableMetric.java index 785957bfb..b9bd5aec4 100644 --- a/java/google/registry/monitoring/metrics/IncrementableMetric.java +++ b/java/google/registry/monitoring/metrics/IncrementableMetric.java @@ -26,7 +26,7 @@ public interface IncrementableMetric extends Metric { * Increments a metric by 1 for the given label values. * *

Use this method rather than {@link IncrementableMetric#incrementBy(long, String...)} if the - * increment value is zero, as it will be slightly more performant. + * increment value is 1, as it will be slightly more performant. * *

If the metric is undefined for given label values, it will be incremented from zero. *