From be4d3a1b459647d355607c44ae3db4c19c5272ea Mon Sep 17 00:00:00 2001 From: QuickWrite <54590845+QuickWrite@users.noreply.github.com> Date: Wed, 27 Sep 2023 15:11:05 +0200 Subject: [PATCH] Noticing a small inconsistency --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 39e4bf7..25a6f34 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ FluentBundle bundle = FluentBundleBuilder.builder(Locale.ENGLISH) And now you can use the different messages for translation: ```java -System.out.println(bundle.resolveMessage("test", new StringResultBuilder()).get()); +System.out.println(bundle.resolveMessage("test", StringResultFactory.construct()).get()); ``` ```console