From e2f9442b05322245c8977deffe608e912193a9b5 Mon Sep 17 00:00:00 2001 From: XLor Date: Wed, 26 Apr 2023 23:01:58 +0800 Subject: [PATCH] doc: fix extra space lint error --- doc/api/single-executable-applications.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/api/single-executable-applications.md b/doc/api/single-executable-applications.md index 2dab554119909c..c8ab25c4cb5e23 100644 --- a/doc/api/single-executable-applications.md +++ b/doc/api/single-executable-applications.md @@ -57,9 +57,9 @@ tool, [postject][]: ```console $ cp (Get-Command node).Source hello.exe ``` - + Using CMD: - + ```console for /F "tokens=*" %n IN ('where.exe node') DO @(copy "%n" hello.exe) ```