From 17affaf3ac212aa59f44427a901d3bdb53402972 Mon Sep 17 00:00:00 2001 From: Gavin Henry Date: Fri, 27 Mar 2026 09:19:00 +0000 Subject: [PATCH] Docs: Crate should be Create I'm pretty sure these are typos. --- fluent-bundle/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fluent-bundle/src/lib.rs b/fluent-bundle/src/lib.rs index 93d7ea53..47fc98bd 100644 --- a/fluent-bundle/src/lib.rs +++ b/fluent-bundle/src/lib.rs @@ -20,7 +20,7 @@ //! // Used to provide a locale for the bundle. //! use unic_langid::langid; //! -//! // 1. Crate a FluentResource +//! // 1. Create a FluentResource //! //! let ftl_string = r#" //! @@ -33,7 +33,7 @@ //! .expect("Failed to parse an FTL string."); //! //! -//! // 2. Crate a FluentBundle +//! // 2. Create a FluentBundle //! //! let langid_en = langid!("en-US"); //! let mut bundle = FluentBundle::new(vec![langid_en]);