From d1d0b88c8ff914167ce06f9c66851d8ffbbbb443 Mon Sep 17 00:00:00 2001 From: Jerzy Date: Thu, 6 Dec 2018 09:45:53 +0100 Subject: [PATCH] p2p/protocols: accounting api doc update (#847) --- p2p/protocols/accounting_api.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/p2p/protocols/accounting_api.go b/p2p/protocols/accounting_api.go index ad3dca6c9c..771a582cf6 100644 --- a/p2p/protocols/accounting_api.go +++ b/p2p/protocols/accounting_api.go @@ -13,7 +13,7 @@ type AccountingApi struct { } // NewAccountingApi creates a new AccountingApi -// m will be used to check if accounting metrics is enabled +// m will be used to check if accounting metrics are enabled func NewAccountingApi(m *AccountingMetrics) *AccountingApi { return &AccountingApi{m} }