From 51068a3dfe28000aec4e849170b3f521d438792f Mon Sep 17 00:00:00 2001 From: Nate Date: Tue, 19 Nov 2024 10:00:16 -0800 Subject: [PATCH] docs: fix docstring --- rhp/v4/rhp.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rhp/v4/rhp.go b/rhp/v4/rhp.go index bba267a..496c5aa 100644 --- a/rhp/v4/rhp.go +++ b/rhp/v4/rhp.go @@ -106,7 +106,7 @@ func (hp HostPrices) RPCReadSectorCost(length uint64) Usage { } // RPCWriteSectorCost returns the cost of executing the WriteSector RPC with the -// given sector length and duration. +// given sector length. func (hp HostPrices) RPCWriteSectorCost(sectorLength uint64) Usage { return Usage{ Storage: hp.StoragePrice.Mul64(SectorSize).Mul64(TempSectorDuration),