Skip to content

Commit 3782692

Browse files
authored
Merge pull request #724 from apiemont/github_pull_request_example
2-contributing.asc: sed command fix/type
2 parents ae52573 + 88d99d4 commit 3782692

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

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

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

0 commit comments

Comments
 (0)