Skip to content

Commit 54d87e6

Browse files
committed
Fix typo in doc comment
1 parent f9cc851 commit 54d87e6

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

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)