From cd344e2698ce8ce34f5d6fc2a6f7586a71e64f39 Mon Sep 17 00:00:00 2001 From: Prasad Tare Date: Wed, 2 Jan 2019 17:03:09 -0500 Subject: [PATCH] Fix typo in comment --- contracts/OracleMock.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/OracleMock.sol b/contracts/OracleMock.sol index 9e7efd81f9..03faa331f0 100644 --- a/contracts/OracleMock.sol +++ b/contracts/OracleMock.sol @@ -93,7 +93,7 @@ contract OracleMock is OracleInterface, Ownable { // Returns the most recent price-time pair for a particular feed. function _mostRecentPriceTime(FeedInfo storage feedInfo) private view returns (uint publishTime, int256 price) { - // Note: if `latestPublushTime` is still 0 (no prices have been written to this feed), then `price` will be 0 + // Note: if `latestPublishTime` is still 0 (no prices have been written to this feed), then `price` will be 0 // (the default value for mapped values). return (feedInfo.latestPublishTime, feedInfo.prices[feedInfo.latestPublishTime]); }