Skip to content

Commit 0dc7297

Browse files
committed
Fix typo in documentation
1 parent 54d87e6 commit 0dc7297

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

docs/api/RestSharp.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -7056,7 +7056,7 @@ Type | Description
70567056
#### Method `GetAsync<T>(IRestClient, IRestRequest, CancellationToken)`
70577057

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

70617061
##### Syntax
70627062
```csharp
@@ -7084,7 +7084,7 @@ Type | Description
70847084
#### Method `PostAsync<T>(IRestClient, IRestRequest, CancellationToken)`
70857085

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

70897089
##### Syntax
70907090
```csharp
@@ -7112,7 +7112,7 @@ Type | Description
71127112
#### Method `PutAsync<T>(IRestClient, IRestRequest, CancellationToken)`
71137113

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

71177117
##### Syntax
71187118
```csharp
@@ -7140,7 +7140,7 @@ Type | Description
71407140
#### Method `HeadAsync<T>(IRestClient, IRestRequest, CancellationToken)`
71417141

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

71457145
##### Syntax
71467146
```csharp
@@ -7168,7 +7168,7 @@ Type | Description
71687168
#### Method `OptionsAsync<T>(IRestClient, IRestRequest, CancellationToken)`
71697169

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

71737173
##### Syntax
71747174
```csharp
@@ -7196,7 +7196,7 @@ Type | Description
71967196
#### Method `PatchAsync<T>(IRestClient, IRestRequest, CancellationToken)`
71977197

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

72017201
##### Syntax
72027202
```csharp
@@ -7224,7 +7224,7 @@ Type | Description
72247224
#### Method `DeleteAsync<T>(IRestClient, IRestRequest, CancellationToken)`
72257225

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

72297229
##### Syntax
72307230
```csharp
@@ -7252,7 +7252,7 @@ Type | Description
72527252
#### Method `Get<T>(IRestClient, IRestRequest)`
72537253

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

72577257
##### Syntax
72587258
```csharp
@@ -7279,7 +7279,7 @@ Type | Description
72797279
#### Method `Post<T>(IRestClient, IRestRequest)`
72807280

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

72847284
##### Syntax
72857285
```csharp
@@ -7306,7 +7306,7 @@ Type | Description
73067306
#### Method `Put<T>(IRestClient, IRestRequest)`
73077307

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

73117311
##### Syntax
73127312
```csharp
@@ -7333,7 +7333,7 @@ Type | Description
73337333
#### Method `Head<T>(IRestClient, IRestRequest)`
73347334

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

73387338
##### Syntax
73397339
```csharp
@@ -7360,7 +7360,7 @@ Type | Description
73607360
#### Method `Options<T>(IRestClient, IRestRequest)`
73617361

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

73657365
##### Syntax
73667366
```csharp
@@ -7387,7 +7387,7 @@ Type | Description
73877387
#### Method `Patch<T>(IRestClient, IRestRequest)`
73887388

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

73927392
##### Syntax
73937393
```csharp
@@ -7414,7 +7414,7 @@ Type | Description
74147414
#### Method `Delete<T>(IRestClient, IRestRequest)`
74157415

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

74197419
##### Syntax
74207420
```csharp

0 commit comments

Comments
 (0)