Skip to content

Commit da30579

Browse files
Merge pull request #1539 from ynden/work/ynden/fix-typo
Fix typo
2 parents f9cc851 + 0dc7297 commit da30579

File tree

2 files changed

+29
-29
lines changed

2 files changed

+29
-29
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

src/RestSharp/RestClientExtensions.cs

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public static IRestResponse<dynamic> ExecuteDynamic(this IRestClient client, IRe
4343

4444
/// <summary>
4545
/// Execute the request using GET HTTP method. Exception will be thrown if the request does not succeed.
46-
/// The response data is deserialzied to the Data property of the returned response object.
46+
/// The response data is deserialized to the Data property of the returned response object.
4747
/// </summary>
4848
/// <param name="client">RestClient instance</param>
4949
/// <param name="request">The request</param>
@@ -59,7 +59,7 @@ public static async Task<T> GetAsync<T>(this IRestClient client, IRestRequest re
5959

6060
/// <summary>
6161
/// Execute the request using POST HTTP method. Exception will be thrown if the request does not succeed.
62-
/// The response data is deserialzied to the Data property of the returned response object.
62+
/// The response data is deserialized to the Data property of the returned response object.
6363
/// </summary>
6464
/// <param name="client">RestClient instance</param>
6565
/// <param name="request">The request</param>
@@ -75,7 +75,7 @@ public static async Task<T> PostAsync<T>(this IRestClient client, IRestRequest r
7575

7676
/// <summary>
7777
/// Execute the request using PUT HTTP method. Exception will be thrown if the request does not succeed.
78-
/// The response data is deserialzied to the Data property of the returned response object.
78+
/// The response data is deserialized to the Data property of the returned response object.
7979
/// </summary>
8080
/// <param name="client">RestClient instance</param>
8181
/// <param name="request">The request</param>
@@ -91,7 +91,7 @@ public static async Task<T> PutAsync<T>(this IRestClient client, IRestRequest re
9191

9292
/// <summary>
9393
/// Execute the request using HEAD HTTP method. Exception will be thrown if the request does not succeed.
94-
/// The response data is deserialzied to the Data property of the returned response object.
94+
/// The response data is deserialized to the Data property of the returned response object.
9595
/// </summary>
9696
/// <param name="client">RestClient instance</param>
9797
/// <param name="request">The request</param>
@@ -107,7 +107,7 @@ public static async Task<T> HeadAsync<T>(this IRestClient client, IRestRequest r
107107

108108
/// <summary>
109109
/// Execute the request using OPTIONS HTTP method. Exception will be thrown if the request does not succeed.
110-
/// The response data is deserialzied to the Data property of the returned response object.
110+
/// The response data is deserialized to the Data property of the returned response object.
111111
/// </summary>
112112
/// <param name="client">RestClient instance</param>
113113
/// <param name="request">The request</param>
@@ -123,7 +123,7 @@ public static async Task<T> OptionsAsync<T>(this IRestClient client, IRestReques
123123

124124
/// <summary>
125125
/// Execute the request using PATCH HTTP method. Exception will be thrown if the request does not succeed.
126-
/// The response data is deserialzied to the Data property of the returned response object.
126+
/// The response data is deserialized to the Data property of the returned response object.
127127
/// </summary>
128128
/// <param name="client">RestClient instance</param>
129129
/// <param name="request">The request</param>
@@ -139,7 +139,7 @@ public static async Task<T> PatchAsync<T>(this IRestClient client, IRestRequest
139139

140140
/// <summary>
141141
/// Execute the request using DELETE HTTP method. Exception will be thrown if the request does not succeed.
142-
/// The response data is deserialzied to the Data property of the returned response object.
142+
/// The response data is deserialized to the Data property of the returned response object.
143143
/// </summary>
144144
/// <param name="client">RestClient instance</param>
145145
/// <param name="request">The request</param>
@@ -155,7 +155,7 @@ public static async Task<T> DeleteAsync<T>(this IRestClient client, IRestRequest
155155

156156
/// <summary>
157157
/// Execute the request using GET HTTP method.
158-
/// The response data is deserialzied to the Data property of the returned response object.
158+
/// The response data is deserialized to the Data property of the returned response object.
159159
/// </summary>
160160
/// <param name="client">RestClient instance</param>
161161
/// <param name="request">The request</param>
@@ -166,7 +166,7 @@ public static IRestResponse<T> Get<T>(this IRestClient client, IRestRequest requ
166166

167167
/// <summary>
168168
/// Execute the request using POST HTTP method.
169-
/// The response data is deserialzied to the Data property of the returned response object.
169+
/// The response data is deserialized to the Data property of the returned response object.
170170
/// </summary>
171171
/// <param name="client">RestClient instance</param>
172172
/// <param name="request">The request</param>
@@ -177,7 +177,7 @@ public static IRestResponse<T> Post<T>(this IRestClient client, IRestRequest req
177177

178178
/// <summary>
179179
/// Execute the request using PUT HTTP method.
180-
/// The response data is deserialzied to the Data property of the returned response object.
180+
/// The response data is deserialized to the Data property of the returned response object.
181181
/// </summary>
182182
/// <param name="client">RestClient instance</param>
183183
/// <param name="request">The request</param>
@@ -188,7 +188,7 @@ public static IRestResponse<T> Put<T>(this IRestClient client, IRestRequest requ
188188

189189
/// <summary>
190190
/// Execute the request using HEAD HTTP method.
191-
/// The response data is deserialzied to the Data property of the returned response object.
191+
/// The response data is deserialized to the Data property of the returned response object.
192192
/// </summary>
193193
/// <param name="client">RestClient instance</param>
194194
/// <param name="request">The request</param>
@@ -199,7 +199,7 @@ public static IRestResponse<T> Head<T>(this IRestClient client, IRestRequest req
199199

200200
/// <summary>
201201
/// Execute the request using OPTIONS HTTP method.
202-
/// The response data is deserialzied to the Data property of the returned response object.
202+
/// The response data is deserialized to the Data property of the returned response object.
203203
/// </summary>
204204
/// <param name="client">RestClient instance</param>
205205
/// <param name="request">The request</param>
@@ -210,7 +210,7 @@ public static IRestResponse<T> Options<T>(this IRestClient client, IRestRequest
210210

211211
/// <summary>
212212
/// Execute the request using PATCH HTTP method.
213-
/// The response data is deserialzied to the Data property of the returned response object.
213+
/// The response data is deserialized to the Data property of the returned response object.
214214
/// </summary>
215215
/// <param name="client">RestClient instance</param>
216216
/// <param name="request">The request</param>
@@ -221,7 +221,7 @@ public static IRestResponse<T> Patch<T>(this IRestClient client, IRestRequest re
221221

222222
/// <summary>
223223
/// Execute the request using DELETE HTTP method.
224-
/// The response data is deserialzied to the Data property of the returned response object.
224+
/// The response data is deserialized to the Data property of the returned response object.
225225
/// </summary>
226226
/// <param name="client">RestClient instance</param>
227227
/// <param name="request">The request</param>
@@ -460,4 +460,4 @@ public static RestClient UseXml(this RestClient client)
460460
return client;
461461
}
462462
}
463-
}
463+
}

0 commit comments

Comments
 (0)