Skip to content

Commit

Permalink
Merge pull request #1 from JamesTFreelance/patch-1
Browse files Browse the repository at this point in the history
Update Symbols.cs
  • Loading branch information
sonvister authored Dec 8, 2017
2 parents cf22836 + 94d658d commit 15c52df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Binance/Symbol.cs
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,7 @@ public static void UpdateCache(IEnumerable<Symbol> symbols)
{
Throw.IfNull(symbols, nameof(symbols));

if (symbols.Any())
if (!symbols.Any())
throw new ArgumentException("Enumerable must not be empty.", nameof(symbols));

lock (_sync)
Expand Down

0 comments on commit 15c52df

Please sign in to comment.