From 136e81f540b379c094329afc8ea6e821b65df130 Mon Sep 17 00:00:00 2001 From: Vini murafa <06.poems_races@icloud.com> Date: Thu, 2 Jan 2025 19:37:07 +0100 Subject: [PATCH] typo fix Update storage.rs --- src/data_source/storage.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data_source/storage.rs b/src/data_source/storage.rs index d5b207dd..39f37c2b 100644 --- a/src/data_source/storage.rs +++ b/src/data_source/storage.rs @@ -47,7 +47,7 @@ //! * We run into a longstanding [`rustc` bug](https://github.com/rust-lang/rust/issues/85063) in //! which type inference diverges when given trait bounds on reference types, even when //! theoretically the types are uniquely inferrable. This issue can be worked around by [explicitly -//! specifying type paramters at every call site](https://users.rust-lang.org/t/type-recursion-when-trait-bound-is-added-on-reference-type/74525/2), +//! specifying type parameters at every call site](https://users.rust-lang.org/t/type-recursion-when-trait-bound-is-added-on-reference-type/74525/2), //! but this further exacerbates the ergonomic issues with this approach, past the point of //! viability. //!