From 3ceb9936d79c808c64d1e9934c80d51015efe5ad Mon Sep 17 00:00:00 2001 From: Nicolas Legrand Date: Wed, 17 May 2023 11:40:27 +0200 Subject: [PATCH] Remove hebrew niqqud in 8-14 String::from example Niqqud (hebrew diacrital system to represent vowels) is mainly used in poetry and in children's book. Israelis do not use niqqud when they write. --- listings/ch08-common-collections/listing-08-14/src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/listings/ch08-common-collections/listing-08-14/src/main.rs b/listings/ch08-common-collections/listing-08-14/src/main.rs index f701fd578b..bf737ab446 100644 --- a/listings/ch08-common-collections/listing-08-14/src/main.rs +++ b/listings/ch08-common-collections/listing-08-14/src/main.rs @@ -3,7 +3,7 @@ fn main() { let hello = String::from("السلام عليكم"); let hello = String::from("Dobrý den"); let hello = String::from("Hello"); - let hello = String::from("שָׁלוֹם"); + let hello = String::from("שלום"); let hello = String::from("नमस्ते"); let hello = String::from("こんにちは"); let hello = String::from("안녕하세요");