From c3302e1720896aa480ae39707ac24913e3e5210f Mon Sep 17 00:00:00 2001 From: Kroese Date: Mon, 13 Oct 2025 09:28:25 +0200 Subject: [PATCH] fix: Rename physical to logical (#1058) --- src/reset.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/reset.sh b/src/reset.sh index e9430e8..19fffed 100644 --- a/src/reset.sh +++ b/src/reset.sh @@ -62,7 +62,7 @@ CPU_CORES="${CPU_CORES// /}" [ -n "${CPU_CORES//[0-9 ]}" ] && error "Invalid amount of CPU_CORES: $CPU_CORES" && exit 15 if [ "$CPU_CORES" -gt "$CORES" ]; then - warn "The amount for CPU_CORES (${CPU_CORES}) exceeds the amount of physical cores, so will be limited to ${CORES}." + warn "The amount for CPU_CORES (${CPU_CORES}) exceeds the amount of logical cores available, so will be limited to ${CORES}." CPU_CORES="$CORES" fi