This commit is contained in:
Adam H. Leventhal 2022-07-20 17:02:59 -07:00
parent bfd194f39c
commit 4dce0641e2
1 changed files with 2 additions and 2 deletions

View File

@ -1161,7 +1161,7 @@ impl Generator {
/// ``` /// ```
/// ///
/// Finally, builders have methods to execute the operation. This simply /// Finally, builders have methods to execute the operation. This simply
/// resolves ach parameter with the ? (Try operator). /// resolves each parameter with the ? (Try operator).
/// ```ignore /// ```ignore
/// impl<'a> OperationId<'a> { /// impl<'a> OperationId<'a> {
/// pub fn send(self) -> Result< /// pub fn send(self) -> Result<
@ -1220,7 +1220,7 @@ impl Generator {
}) })
.collect::<Result<Vec<_>>>()?; .collect::<Result<Vec<_>>>()?;
// Generate the devalue value for each parameter. // Generate the default value value for each parameter.
let param_values = method let param_values = method
.params .params
.iter() .iter()