From 7d605994f9106dc6b25c5cf78ad172256cc8428d Mon Sep 17 00:00:00 2001 From: Danny McCormick Date: Wed, 21 Aug 2019 12:54:24 -0400 Subject: [PATCH] Comment nit --- packages/io/src/io.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/io/src/io.ts b/packages/io/src/io.ts index dc263134..d6649945 100644 --- a/packages/io/src/io.ts +++ b/packages/io/src/io.ts @@ -226,9 +226,9 @@ export async function which(tool: string, check?: boolean): Promise { // build the list of directories // - // Note, technically "where" checks the current directory on Windows. From a task lib perspective, + // Note, technically "where" checks the current directory on Windows. From a toolkit perspective, // it feels like we should not do this. Checking the current directory seems like more of a use - // case of a shell, and the which() function exposed by the task lib should strive for consistency + // case of a shell, and the which() function exposed by the toolkit should strive for consistency // across platforms. const directories: string[] = []