Skip to content

Commit e988905

Browse files
committed
Update connecting doc
Closes #2092
1 parent 087481c commit e988905

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/client-concepts/low-level/connecting.asciidoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ These should not be handled as you want to know about them during development.
178178

179179
=== OnRequestCompleted
180180

181-
You can pass a callback of type `Action<IApiCallDetails>` that can eaves drop every time a response (good or bad) is created.
181+
You can pass a callback of type `Action<IApiCallDetails>` that can eavesdrop every time a response (good or bad) is created.
182182
If you have complex logging needs this is a good place to add that in.
183183

184184
[source,csharp]
@@ -300,7 +300,7 @@ SSL must be configured outside of the client using .NET's http://msdn.microsoft
300300
class and setting the http://msdn.microsoft.com/en-us/library/system.net.servicepointmanager.servercertificatevalidationcallback.aspx[ServerCertificateValidationCallback]
301301
property.
302302

303-
The bare minimum to make .NET accept self-signed SSL certs that are not in the Window's CA store would be to have the callback simply return `true`:
303+
The bare minimum to make .NET accept self-signed SSL certs that are not in the Windows CA store would be to have the callback simply return `true`:
304304

305305
[source,csharp]
306306
----

src/Tests/ClientConcepts/LowLevel/Connecting.doc.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ public void AvailableOptions()
139139
}
140140

141141
/** === OnRequestCompleted
142-
* You can pass a callback of type `Action<IApiCallDetails>` that can eaves drop every time a response (good or bad) is created.
142+
* You can pass a callback of type `Action<IApiCallDetails>` that can eavesdrop every time a response (good or bad) is created.
143143
* If you have complex logging needs this is a good place to add that in.
144144
*/
145145
[U]
@@ -253,7 +253,7 @@ public void ConfiguringSSL()
253253
* class and setting the http://msdn.microsoft.com/en-us/library/system.net.servicepointmanager.servercertificatevalidationcallback.aspx[ServerCertificateValidationCallback]
254254
* property.
255255
*
256-
* The bare minimum to make .NET accept self-signed SSL certs that are not in the Window's CA store would be to have the callback simply return `true`:
256+
* The bare minimum to make .NET accept self-signed SSL certs that are not in the Windows CA store would be to have the callback simply return `true`:
257257
*/
258258

259259
#if !DOTNETCORE

0 commit comments

Comments
 (0)