From bf5ea48b402d54b8cf55888d7d3d08f164c42028 Mon Sep 17 00:00:00 2001 From: Daniel Jones Date: Thu, 18 Jul 2024 16:53:26 +0200 Subject: [PATCH] Missing semicolon in README.md example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5cadf2b..9a20a64 100644 --- a/README.md +++ b/README.md @@ -230,7 +230,7 @@ var glossaryEnToDe = await translator.CreateGlossaryAsync( Console.WriteLine($"Created {glossaryEnToDe.Name}' ({glossaryEnToDe.GlossaryId}) " + $"{glossaryEnToDe.SourceLanguageCode}->{glossaryEnToDe.TargetLanguageCode} " + $"containing {glossaryEnToDe.EntryCount} entries" -) +); // Example: Created 'My glossary' (559192ed-8e23-...) en->de containing 2 entries ```