Skip to content

Commit a159a09

Browse files
ptaremrice32
authored andcommitted
Fix typo in comment (#71)
1 parent 15fcbab commit a159a09

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contracts/OracleMock.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ contract OracleMock is OracleInterface, Ownable {
9393

9494
// Returns the most recent price-time pair for a particular feed.
9595
function _mostRecentPriceTime(FeedInfo storage feedInfo) private view returns (uint publishTime, int256 price) {
96-
// Note: if `latestPublushTime` is still 0 (no prices have been written to this feed), then `price` will be 0
96+
// Note: if `latestPublishTime` is still 0 (no prices have been written to this feed), then `price` will be 0
9797
// (the default value for mapped values).
9898
return (feedInfo.latestPublishTime, feedInfo.prices[feedInfo.latestPublishTime]);
9999
}

0 commit comments

Comments
 (0)