Skip to content

Commit

Permalink
More bug fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
Nima Ara committed Aug 29, 2016
1 parent f54b6f5 commit 83d3b0f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Easy.Common/Base36.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public static string Encode(long input)
/// <returns>Decoded <paramref name="input"/> as long.</returns>
public static long Decode(string input)
{
Ensure.NotNull(input, "input");
Ensure.NotNull(input, nameof(input));

var reversed = input.ToLower().Reverse();
long result = 0;
Expand Down
2 changes: 1 addition & 1 deletion Easy.Common/EasyTimer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/// <summary>
/// A helper class which provides JavaScript style timers, setInterval and SetTimeout
/// </summary>
public class EasyTimer
public static class EasyTimer
{
/// <summary>
/// Executes a timer which invokes <paramref name="action"/> after the specified <paramref name="interval"/>
Expand Down

0 comments on commit 83d3b0f

Please # to comment.