Skip to content
This repository has been archived by the owner on May 25, 2021. It is now read-only.

Commit

Permalink
fixed spelling issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
nathannis committed Jan 24, 2013
1 parent 739b24d commit daaa3de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Connections/LoadBalancerServerManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@ public void Add(Server server)
}
public void Remove(Server server)
{
throw new NotImplementedException ("LoadBalancedServerManager does not implement Remove(server)");
throw new NotImplementedException ("LoadBalancerServerManager does not implement Remove(server)");
}
#endregion
#region IEnumerable<Server> Members

public IEnumerator<Server> GetEnumerator()
{
throw new NotImplementedException ("LoadBalancedServerManager does not implement Enumerable(server)");
throw new NotImplementedException ("LoadBalancerServerManager does not implement Enumerable(server)");
}

#endregion
Expand Down

0 comments on commit daaa3de

Please sign in to comment.