From 389261636b6a77b1d8b665ceb482fd1fc1af4021 Mon Sep 17 00:00:00 2001 From: Eric Barch Date: Mon, 16 Jan 2017 09:36:56 -0500 Subject: [PATCH] x64 and x86 commands were reversed. --- book/01-introduction/sections/first-time-setup.asc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/book/01-introduction/sections/first-time-setup.asc b/book/01-introduction/sections/first-time-setup.asc index be27d8fa1..719ddeab2 100644 --- a/book/01-introduction/sections/first-time-setup.asc +++ b/book/01-introduction/sections/first-time-setup.asc @@ -55,12 +55,12 @@ While on a Windows system, if you want to use a different text editor, such as N On a x86 system [source,console] ---- -$ git config --global core.editor "'C:/Program Files/Notepad++/notepad++.exe' -multiInst -nosession" +$ git config --global core.editor "'C:/Program Files (x86)/Notepad++/notepad++.exe' -multiInst -nosession" ---- On a x64 system [source,console] ---- -$ git config --global core.editor "'C:/Program Files (x86)/Notepad++/notepad++.exe' -multiInst -nosession" +$ git config --global core.editor "'C:/Program Files/Notepad++/notepad++.exe' -multiInst -nosession" ---- [NOTE]