Skip to content

Commit

Permalink
Fixes #91
Browse files Browse the repository at this point in the history
  • Loading branch information
sonvister committed May 8, 2018
1 parent e9c364c commit 74502b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Binance/Extensions/CandlestickIntervalExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public static string AsString(this CandlestickInterval interval)
case CandlestickInterval.Week: return "1w";
case CandlestickInterval.Month: return "1M";
default:
throw new ArgumentException($"{nameof(CandlestickIntervalExtensions)}.{nameof(ToString)}: {nameof(CandlestickInterval)} not supported: {interval}");
throw new ArgumentException($"{nameof(CandlestickIntervalExtensions)}.{nameof(AsString)}: {nameof(CandlestickInterval)} not supported: {interval}");
}
}
}
Expand Down

0 comments on commit 74502b1

Please sign in to comment.