style: missed edit from last commit

This commit is contained in:
0xMochan 2025-04-14 17:04:17 -07:00
parent f0e0f62a9f
commit a86bb4f8a5
1 changed files with 2 additions and 1 deletions

View File

@ -80,7 +80,8 @@ impl<'c, 'a, M: CompletionModel> PromptRequest<'c, 'a, M, Simple> {
}
/// Due to: [RFC 2515](https://github.com/rust-lang/rust/issues/63063), we have to use a `BoxFuture`
/// for the `IntoFuture` implementation. In the future, we should be able to use `impl Future<...>` directly via the associated type.
/// for the `IntoFuture` implementation. In the future, we should be able to use `impl Future<...>`
/// directly via the associated type.
impl<'c: 'a, 'a, M: CompletionModel, T: State + 'a> IntoFuture for PromptRequest<'c, 'a, M, T>
where
PromptRequest<'c, 'a, M, T>: SendPromptRequest<M, T>,