Skip to content

Commit 8fee05d

Browse files
Correct typo (#2244)
1 parent 6c596fe commit 8fee05d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/versioned_docs/version-v111/usage/example.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ For example, let's look at a simple Twitter API v2 client, which uses OAuth2 mac
1212

1313
Before implementing an API client, we need to have a model for it. The model includes an abstraction for the client, which has functions for the API calls we are interested to implement. In addition, the client model would include the necessary request and response models. Usually those are simple classes or records without logic, which are often referred to as DTOs (data transfer objects).
1414

15-
This example starts with a single function that retrieves one Twitter user. Lets being by defining the API client interface:
15+
This example starts with a single function that retrieves one Twitter user. Let's begin by defining the API client interface:
1616

1717
```csharp
1818
public interface ITwitterClient {
@@ -149,4 +149,4 @@ Sample code provided on this page is a production code. For example, the authent
149149

150150
## Final words
151151

152-
This page demonstrates how an API client can be implemented as a typed, configurable client with its own interface. Usage of the client in applications is not covered here as different application types and target frameworks have their own idiomatic ways to use HTTP clients.
152+
This page demonstrates how an API client can be implemented as a typed, configurable client with its own interface. Usage of the client in applications is not covered here as different application types and target frameworks have their own idiomatic ways to use HTTP clients.

0 commit comments

Comments
 (0)