Skip to content

Commit

Permalink
Fix typo in documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
ynden committed Nov 24, 2020
1 parent 54d87e6 commit 0dc7297
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions docs/api/RestSharp.md
Expand Up @@ -7056,7 +7056,7 @@ Type | Description
#### Method `GetAsync<T>(IRestClient, IRestRequest, CancellationToken)`

Execute the request using GET HTTP method. Exception will be thrown if the request does not succeed.
The response data is deserialzied to the Data property of the returned response object.
The response data is deserialized to the Data property of the returned response object.

##### Syntax
```csharp
Expand Down Expand Up @@ -7084,7 +7084,7 @@ Type | Description
#### Method `PostAsync<T>(IRestClient, IRestRequest, CancellationToken)`

Execute the request using POST HTTP method. Exception will be thrown if the request does not succeed.
The response data is deserialzied to the Data property of the returned response object.
The response data is deserialized to the Data property of the returned response object.

##### Syntax
```csharp
Expand Down Expand Up @@ -7112,7 +7112,7 @@ Type | Description
#### Method `PutAsync<T>(IRestClient, IRestRequest, CancellationToken)`

Execute the request using PUT HTTP method. Exception will be thrown if the request does not succeed.
The response data is deserialzied to the Data property of the returned response object.
The response data is deserialized to the Data property of the returned response object.

##### Syntax
```csharp
Expand Down Expand Up @@ -7140,7 +7140,7 @@ Type | Description
#### Method `HeadAsync<T>(IRestClient, IRestRequest, CancellationToken)`

Execute the request using HEAD HTTP method. Exception will be thrown if the request does not succeed.
The response data is deserialzied to the Data property of the returned response object.
The response data is deserialized to the Data property of the returned response object.

##### Syntax
```csharp
Expand Down Expand Up @@ -7168,7 +7168,7 @@ Type | Description
#### Method `OptionsAsync<T>(IRestClient, IRestRequest, CancellationToken)`

Execute the request using OPTIONS HTTP method. Exception will be thrown if the request does not succeed.
The response data is deserialzied to the Data property of the returned response object.
The response data is deserialized to the Data property of the returned response object.

##### Syntax
```csharp
Expand Down Expand Up @@ -7196,7 +7196,7 @@ Type | Description
#### Method `PatchAsync<T>(IRestClient, IRestRequest, CancellationToken)`

Execute the request using PATCH HTTP method. Exception will be thrown if the request does not succeed.
The response data is deserialzied to the Data property of the returned response object.
The response data is deserialized to the Data property of the returned response object.

##### Syntax
```csharp
Expand Down Expand Up @@ -7224,7 +7224,7 @@ Type | Description
#### Method `DeleteAsync<T>(IRestClient, IRestRequest, CancellationToken)`

Execute the request using DELETE HTTP method. Exception will be thrown if the request does not succeed.
The response data is deserialzied to the Data property of the returned response object.
The response data is deserialized to the Data property of the returned response object.

##### Syntax
```csharp
Expand Down Expand Up @@ -7252,7 +7252,7 @@ Type | Description
#### Method `Get<T>(IRestClient, IRestRequest)`

Execute the request using GET HTTP method.
The response data is deserialzied to the Data property of the returned response object.
The response data is deserialized to the Data property of the returned response object.

##### Syntax
```csharp
Expand All @@ -7279,7 +7279,7 @@ Type | Description
#### Method `Post<T>(IRestClient, IRestRequest)`

Execute the request using POST HTTP method.
The response data is deserialzied to the Data property of the returned response object.
The response data is deserialized to the Data property of the returned response object.

##### Syntax
```csharp
Expand All @@ -7306,7 +7306,7 @@ Type | Description
#### Method `Put<T>(IRestClient, IRestRequest)`

Execute the request using PUT HTTP method.
The response data is deserialzied to the Data property of the returned response object.
The response data is deserialized to the Data property of the returned response object.

##### Syntax
```csharp
Expand All @@ -7333,7 +7333,7 @@ Type | Description
#### Method `Head<T>(IRestClient, IRestRequest)`

Execute the request using HEAD HTTP method.
The response data is deserialzied to the Data property of the returned response object.
The response data is deserialized to the Data property of the returned response object.

##### Syntax
```csharp
Expand All @@ -7360,7 +7360,7 @@ Type | Description
#### Method `Options<T>(IRestClient, IRestRequest)`

Execute the request using OPTIONS HTTP method.
The response data is deserialzied to the Data property of the returned response object.
The response data is deserialized to the Data property of the returned response object.

##### Syntax
```csharp
Expand All @@ -7387,7 +7387,7 @@ Type | Description
#### Method `Patch<T>(IRestClient, IRestRequest)`

Execute the request using PATCH HTTP method.
The response data is deserialzied to the Data property of the returned response object.
The response data is deserialized to the Data property of the returned response object.

##### Syntax
```csharp
Expand All @@ -7414,7 +7414,7 @@ Type | Description
#### Method `Delete<T>(IRestClient, IRestRequest)`

Execute the request using DELETE HTTP method.
The response data is deserialzied to the Data property of the returned response object.
The response data is deserialized to the Data property of the returned response object.

##### Syntax
```csharp
Expand Down

0 comments on commit 0dc7297

Please sign in to comment.