From 969c29b95cd3153da242d47cac1d12dda3369469 Mon Sep 17 00:00:00 2001 From: Jah-yee Date: Fri, 13 Mar 2026 17:08:26 +0800 Subject: [PATCH] fix: correct typo 'installion' -> 'installing' in installer script Fixes issue #29 - Typos detected by nightly scan (3 found) Lines 48, 92, 107 in installers/install_nixl.sh --- installers/install_nixl.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/installers/install_nixl.sh b/installers/install_nixl.sh index 814afda..90afc6d 100644 --- a/installers/install_nixl.sh +++ b/installers/install_nixl.sh @@ -45,7 +45,7 @@ if [ ! -e "/dev/gdrdrv" ] || [ "$FORCE" = true ]; then cd .. else - echo "Found /dev/gdrdrv. Skipping gdrcopy installion" + echo "Found /dev/gdrdrv. Skipping gdrcopy installing" fi if ! command -v ucx_info &> /dev/null || [ "$FORCE" = true ]; then @@ -89,7 +89,7 @@ if ! command -v ucx_info &> /dev/null || [ "$FORCE" = true ]; then cd .. else - echo "Found existing UCX. Skipping UCX installion" + echo "Found existing UCX. Skipping UCX installing" fi if ! command -v nixl_test &> /dev/null || [ "$FORCE" = true ]; then @@ -104,5 +104,5 @@ if ! command -v nixl_test &> /dev/null || [ "$FORCE" = true ]; then cd ../.. else - echo "Found existing NIXL. Skipping NIXL installion" + echo "Found existing NIXL. Skipping NIXL installing" fi