From 44926efd85e72ed005bdd45adbcb0677e881de38 Mon Sep 17 00:00:00 2001 From: Bjoern Rabenstein Date: Wed, 14 May 2014 14:51:12 +0200 Subject: [PATCH] Fix typo. Change-Id: I1b28a0f232e88b79bc34a458c115bcf74e978284 --- text/parse.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/text/parse.go b/text/parse.go index 294aa0b..f76ec3a 100644 --- a/text/parse.go +++ b/text/parse.go @@ -294,7 +294,7 @@ func (p *Parser) startLabelValue() stateFn { p.currentLabelPair.Value = proto.String(p.currentToken.String()) // Once more, special treatment of summaries: // - Quantile labels are special, will result in dto.Quantile later. - // - Othel labels have to be added to currentLabels for signature calculation. + // - Other labels have to be added to currentLabels for signature calculation. if p.currentMF.GetType() == dto.MetricType_SUMMARY { if p.currentLabelPair.GetName() == "quantile" { if p.currentQuantile, p.err = strconv.ParseFloat(p.currentLabelPair.GetValue(), 64); p.err != nil {