Skip to content

Commit

Permalink
Rename into_unflatten to canonicalize
Browse files Browse the repository at this point in the history
  • Loading branch information
Harry Barber committed Aug 31, 2022
1 parent 089e8d6 commit 7eb8e1a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rust-runtime/aws-smithy-http-server/src/operation/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ impl<Op, S, PollError> Operation<Normalize<Op, S, PollError>> {
S: OperationService<Op, Exts, PollError>,
{
Self {
inner: inner.into_unflatten(),
inner: inner.canonicalize(),
layer: Identity::new(),
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ where
Op: OperationShape,
{
/// Convert the [`OperationService`] into a canonicalized [`Service`].
fn into_unflatten(self) -> Normalize<Op, Self, PollError>
fn canonicalize(self) -> Normalize<Op, Self, PollError>
where
Self: Sized,
{
Expand Down

0 comments on commit 7eb8e1a

Please sign in to comment.