Skip to content

Commit 8067752

Browse files
author
Zibi Braniecki
committed
Fix example test
1 parent f9b0d61 commit 8067752

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

fluent-bundle/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
//! .expect("Failed to add FTL resources to the bundle.");
2929
//!
3030
//! let (value, _) = bundle
31-
//! .format("hello-world", None);
31+
//! .format("hello-world", None)
3232
//! .expect("Failed to format a message.");
3333
//!
3434
//! assert_eq!(&value, "Hello, world!");
@@ -37,7 +37,7 @@
3737
//! args.insert("name", FluentValue::from("John"));
3838
//!
3939
//! let (value, _) = bundle
40-
//! .format("intro", Some(&args));
40+
//! .format("intro", Some(&args))
4141
//! .expect("Failed to format a message.");
4242
//!
4343
//! assert_eq!(value, "Welcome, John.");

0 commit comments

Comments
 (0)