From 24977048c323452af3b4ada90790ee63e4b505c2 Mon Sep 17 00:00:00 2001 From: Danila Yudin Date: Mon, 11 May 2026 19:23:05 +0300 Subject: [PATCH] docs: fix hyphenation updater script name (#1931) ## Summary * Rename the hyphenation update script to match the documented `update_hyphenation.sh` name. * Update the hyphenation trie documentation command example to use the renamed script. ## Additional Context The prose in `docs/hyphenation-trie-format.md` referred to `update_hyphenation.sh`, but the command example and file on disk used `update_hypenation.sh`. This made the documented script name inconsistent with the runnable command. Verified with `rg` that no references to the misspelled script name remain. Also ran `bash -n scripts/update_hyphenation.sh` to syntax-check the renamed script without downloading trie files. --- docs/hyphenation-trie-format.md | 2 +- scripts/{update_hypenation.sh => update_hyphenation.sh} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename scripts/{update_hypenation.sh => update_hyphenation.sh} (100%) diff --git a/docs/hyphenation-trie-format.md b/docs/hyphenation-trie-format.md index 54c12fa2..ebe54229 100644 --- a/docs/hyphenation-trie-format.md +++ b/docs/hyphenation-trie-format.md @@ -49,5 +49,5 @@ A convenient script `update_hyphenation.sh` is used to update all languages. To use it, run: ```sh -./scripts/update_hypenation.sh +./scripts/update_hyphenation.sh ``` diff --git a/scripts/update_hypenation.sh b/scripts/update_hyphenation.sh similarity index 100% rename from scripts/update_hypenation.sh rename to scripts/update_hyphenation.sh