Skip to content

Commit 97373fa

Browse files
authored
fix tyop
1 parent ea20639 commit 97373fa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sdk/typespec/typespec_client_core/src/http/response.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ pub struct Response<T = ResponseBody, F = DefaultFormat> {
3434
impl<F> Response<ResponseBody, F> {
3535
/// Converts an "untyped" raw response into a typed response, using the specified format.
3636
///
37-
/// This method is intended for use in service clients, to "set" the model type for a raw response receieved from the pipeline.
37+
/// This method is intended for use in service clients, to "set" the model type for a raw response received from the pipeline.
3838
pub fn with_model_type<T, F2>(self) -> Response<T, F2> {
3939
Response {
4040
status: self.status,
@@ -91,7 +91,7 @@ impl<T, F> Response<T, F> {
9191

9292
/// Changes the format of the response body to the specified format.
9393
///
94-
/// This method is intended for use in service clients, to "set" the model type for a raw response receieved from the pipeline.
94+
/// This method is intended for use in service clients, to "set" the model type for a raw response received from the pipeline.
9595
pub fn with_format<F2>(self) -> Response<T, F2> {
9696
Response {
9797
status: self.status,

0 commit comments

Comments
 (0)