Skip to content

Commit

Permalink
Remove hebrew niqqud in 8-14 String::from example
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
nlegrand committed May 17, 2023
1 parent 8fa6b85 commit 3ceb993
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion listings/ch08-common-collections/listing-08-14/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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("안녕하세요");
Expand Down

0 comments on commit 3ceb993

Please sign in to comment.