Fix typo.

Change-Id: I1b28a0f232e88b79bc34a458c115bcf74e978284
This commit is contained in:
Bjoern Rabenstein 2014-05-14 14:51:12 +02:00
parent de6fffaa30
commit 44926efd85
1 changed files with 1 additions and 1 deletions

View File

@ -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 {