From 929b0b81fdf358ee6fdcd770cdcb2d801659c968 Mon Sep 17 00:00:00 2001 From: Val Lorentz Date: Sat, 25 Nov 2023 10:42:20 +0100 Subject: [PATCH] fluent-fallback: Fix missing backtick --- fluent-fallback/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fluent-fallback/src/lib.rs b/fluent-fallback/src/lib.rs index 14069069..ee405614 100644 --- a/fluent-fallback/src/lib.rs +++ b/fluent-fallback/src/lib.rs @@ -61,7 +61,7 @@ //! //! Resource identifiers can refer to resources that are either required or optional. //! In the above example, `"test.ftl"` is a required resource (the default using `.into()`), -//! and `"test2.ftl" is an optional resource, which you can create via the +//! and `"test2.ftl"` is an optional resource, which you can create via the //! [`ToResourceId`](fluent_fallback::types::ToResourceId) trait. //! //! A required resource must be present in order for the a bundle to be considered valid.