Skip to content

Commit

Permalink
Minor typo fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
sunzenshen committed Aug 12, 2014
1 parent de7380e commit 444e6ac
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions guide/challenges/remote_control.html
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ <h2>The Challenge:</h2>

<h2>Remotes</h2>

<p>When you put something on GitHub, that copy lives on one of GitHub's servers. This makes it a <strong>remote</strong> repository because is not on your computer, but on a server, "remote" and somewhere else. By <strong>pushing</strong> your <strong>local</strong> (on your computer)
<p>When you put something on GitHub, that copy lives on one of GitHub's servers. This makes it a <strong>remote</strong> repository because it is not on your computer, but on a server, "remote" and somewhere else. By <strong>pushing</strong> your <strong>local</strong> (on your computer)
changes to it, you keep it up to date.</p>

<p>Others can always get the
Expand Down Expand Up @@ -177,4 +177,4 @@ <h2>Tips</h2>

</script>
</body>
</html>
</html>
4 changes: 2 additions & 2 deletions problems/requesting_you_pull_please/verify.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ function pullrequest(username) {
request(url + username, {json: true}, function (error, response, body) {
if (!error && response.statusCode == 200) {
var pr = body.pr
if (pr) console.log("Found your pull request!")
if (pr) console.log("Found your pull request!")
else console.log("No merged pull request found\nfor " + username
+ ". If you did make a\npull request, return to "
+ "it's\nwebsite to see comments." )
+ "its\nwebsite to see comments." )
}
})
}

0 comments on commit 444e6ac

Please sign in to comment.