Skip to content

Commit 88d99d4

Browse files
authored
Update 2-contributing.asc
reformatting sed linux command, as per Ben suggestion
1 parent 63bba9d commit 88d99d4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

book/06-github/sections/2-contributing.asc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,8 @@ $ git checkout -b slow-blink <2>
7272
Switched to a new branch 'slow-blink'
7373
7474
$ sed -i '' 's/1000/3000/' blink.ino <3> (MacOSX)
75-
$ sed -i 's/1000/3000/' blink.ino <3> (Linux)
75+
# If you're on a Linux system, do this instead:
76+
# $ sed -i 's/1000/3000/' blink.ino
7677
7778
$ git diff --word-diff <4>
7879
diff --git a/blink.ino b/blink.ino

0 commit comments

Comments
 (0)