Commit f66a1070 authored by Marc Gravell's avatar Marc Gravell

Merge pull request #134 from superlogical/patch-1

Update Basics.md typo
parents 5fc9cc76 dd47f4a7
......@@ -82,7 +82,7 @@ For maintenance purposes, it is sometimes necessary to issue server-specific com
IServer server = redis.GetServer("localhost", 6379);
The `GetServer` method will accept an [`EndPoint`](http://msdn.microsoft.com/en-us/library/system.net.endpoint(v=vs.110).aspx) or the name/value pair that uniquely identify the server. As before, the object returned from `GetServer` is a cheap pass-thru object that does not to be stored, and async-state can be optionally specified. Note that the set of available endpoints is also available:
The `GetServer` method will accept an [`EndPoint`](http://msdn.microsoft.com/en-us/library/system.net.endpoint(v=vs.110).aspx) or the name/value pair that uniquely identify the server. As before, the object returned from `GetServer` is a cheap pass-thru object that does not need to be stored, and async-state can be optionally specified. Note that the set of available endpoints is also available:
EndPoint[] endpoints = redis.GetEndPoints();
......@@ -122,4 +122,4 @@ The fire-and-forget usage is accessed by the optional `CommandFlags flags` param
[1]: http://msdn.microsoft.com/en-us/library/dd460717%28v=vs.110%29.aspx
[2]: http://msdn.microsoft.com/en-us/library/system.threading.tasks.task.asyncstate(v=vs.110).aspx
[3]: http://msdn.microsoft.com/en-us/library/system.string(v=vs.110).aspx
\ No newline at end of file
[3]: http://msdn.microsoft.com/en-us/library/system.string(v=vs.110).aspx
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment