From fe9bf4f2f266dcd1796cd0726e3f0e320092f4fe Mon Sep 17 00:00:00 2001 From: mikaello <2505178+mikaello@users.noreply.github.com> Date: Sat, 16 May 2026 22:58:44 +0200 Subject: [PATCH] docs: fix typos in README and kotlinc test - "Silver Seacher" -> "Silver Searcher" - duplicated "the" before devcontainers/features link - "installe" -> "install" in test message - balance quoting in ktlint check description --- README.md | 4 ++-- test/kotlinc/test.sh | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 31c68a1..51147d4 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # A Dev Container Features Collection This repository is based on the -[the `devcontainers/features` repository](https://github.com/devcontainers/features). +[`devcontainers/features` repository](https://github.com/devcontainers/features). ## Contents @@ -11,7 +11,7 @@ Install the modern shell utilities: - [eza](https://eza.rocks/), _ls_ alternative (previously [exa](https://github.com/ogham/exa) was bundled) - [fd](https://github.com/sharkdp/fd), _find_ alternative -- [ag (The Silver Seacher)](https://github.com/ggreer/the_silver_searcher), +- [ag (The Silver Searcher)](https://github.com/ggreer/the_silver_searcher), _grep_ alternative - [bat](https://github.com/sharkdp/bat), _cat_ alternative diff --git a/test/kotlinc/test.sh b/test/kotlinc/test.sh index a8209c0..5ecf083 100644 --- a/test/kotlinc/test.sh +++ b/test/kotlinc/test.sh @@ -6,7 +6,7 @@ set -e rm -rf /var/lib/apt/lists/* if [ "$(id -u)" -ne 0 ]; then - echo -e 'Script must be run as root to be able to installe dependencies, changing to sudo when installing.' + echo -e 'Script must be run as root to be able to install dependencies, changing to sudo when installing.' fi apt_get_update() { @@ -41,7 +41,7 @@ echo $PATH # Feature-specific tests # The 'check' command comes from the dev-container-features-test-lib. -check "ktlint: ktlint --version'" ktlint --version +check "ktlint: 'ktlint --version'" ktlint --version check "kotlinc: 'kotlinc --version'" kotlinc -version # Report results