From 1c27c52804b636d6f52c27bad68506b3c44ea646 Mon Sep 17 00:00:00 2001
From: Esben Sparre Andreasen <esbena@github.com>
Date: Tue, 31 Aug 2021 08:49:03 +0200
Subject: [PATCH] Fix typo in docstring

---
 lib/util.js | 2 +-
 src/util.ts | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/util.js b/lib/util.js
index e87f70617..fd292bab3 100644
--- a/lib/util.js
+++ b/lib/util.js
@@ -129,7 +129,7 @@ function getAddSnippetsFlag(userInput) {
 exports.getAddSnippetsFlag = getAddSnippetsFlag;
 /**
  * Get the codeql `--threads` value specified for the `threads` input.
- * If not value was specified, all available threads will be used.
+ * If no value was specified, all available threads will be used.
  *
  * The value will be capped to the number of available CPUs.
  *
diff --git a/src/util.ts b/src/util.ts
index 46398d00d..9f614be1c 100644
--- a/src/util.ts
+++ b/src/util.ts
@@ -123,7 +123,7 @@ export function getAddSnippetsFlag(
 
 /**
  * Get the codeql `--threads` value specified for the `threads` input.
- * If not value was specified, all available threads will be used.
+ * If no value was specified, all available threads will be used.
  *
  * The value will be capped to the number of available CPUs.
  *