Skip to content

Commit 50e432b

Browse files
committed
Fix typos in Foundations.
1 parent 5243777 commit 50e432b

File tree

3 files changed

+18
-21
lines changed

3 files changed

+18
-21
lines changed

foundations/index-extras.md

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ byline: Discovering the GitHub collaboration platform
5353
* Images
5454
* Maps
5555
* Spreadsheets
56-
* models
56+
* Models
5757
* Branch view
5858
* Branch ahead/behind positions
5959
* Network graph
@@ -138,7 +138,7 @@ The GitHub collaboration platform facilitates:
138138

139139

140140

141-
### Drive by contributions
141+
### Drive-by contributions
142142
<iframe src="//player.vimeo.com/video/88472114" width="500" height="281" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
143143

144144

@@ -162,7 +162,7 @@ The GitHub collaboration platform facilitates:
162162

163163
* Editing content of track file(s)
164164
* Examining differences in GHfD
165-
* Commiting changes as-needed
165+
* Committing changes as-needed
166166

167167

168168

@@ -249,13 +249,10 @@ The GitHub collaboration platform facilitates:
249249
* Explain what a Fork is, its purpose, reasons
250250
* Demonstrate who has Forked from Network Members page
251251
* GitHub Student creates a Fork to follow along
252-
* Perform the same branching, commiting pattern
252+
* Perform the same branching, committing pattern
253253
* Open a Pull Request and see the "linkage"
254254
* Review and create local branch relating to PRs (even from Fork) ???
255255
* Use "Checkout this Branch for..."" to create local branch of any PR and branch
256256
* Show how branch cannot be synced for Forks' branches
257257
* Show how branch directly on repo can be changed
258258
* Review how a Fork's branch and PR can be manipulated, merged locally into another branch, integrated, and close original PR
259-
260-
261-

foundations/index-simple.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ redirect_from:
1414

1515
---
1616

17-
![Gitl logo](../assets/diagrams/git-logo-black.svg)
17+
![Git logo](../assets/diagrams/git-logo-black.svg)
1818

1919
---
2020

@@ -221,7 +221,7 @@ Repositories can be created in numerous ways, including:
221221
* With a GitHub GUI
222222
* With `git init` at the command line
223223

224-
And important decision when creating your repository is in its name. Giving it a human readable, quick-to-identify, and sensible name makes it most effective and efficient for both yourself, and your colleagues to understand.
224+
An important decision when creating your repository is in its name. Giving it a human readable, quick-to-identify, and sensible name makes it most effective and efficient for both yourself, and your colleagues to understand.
225225

226226

227227

@@ -321,13 +321,13 @@ Just as with the Git technology operating on GitHub, local repositories also use
321321
1. Using the GitHub web UI, create a branch with an articulate feature name
322322
2. Make two distinct commits to the branch, each contributing part of the feature's changes
323323
3. Return to the homepage of the repository by clicking the repository's name
324-
4. Notice the suggestion message asking if you'd like to "compare and pull request"
324+
4. Notice the suggestion message asking if you'd like to "compare and Pull Request"
325325
5. Click on *Compare and Pull Request*
326-
6. Describe the reasoning behind the changes on this branch via the pull request
326+
6. Describe the reasoning behind the changes on this branch via the Pull Request
327327
7. @mention a team or colleague, asking for a code review
328328
8. Address the points raised by the reviewers through an additional commit to the branch
329329
9. Ask for a final review and :+1: from a colleague
330-
10. Merge the pull request
330+
10. Merge the Pull Request
331331
{% endcapture %}{% include lab %}
332332

333333
### Details
@@ -356,7 +356,7 @@ A branch is a divergent path in the history of the code base. It may contain an
356356
1. Create a Fork of a repository needing contributions
357357
2. Follow the contribution pattern of the [GitHub Flow](https://guides.github.com/introduction/flow/), with the branch creation and commits happening on your fork of the repository
358358
3. Observe the Network and Members graph that offer visualizations of your commits and fork
359-
4. Merge the pull request
359+
4. Merge the Pull Request
360360
5. Observe your contributions in the original repository, having preserved your username as the author of the code
361361
{% endcapture %}{% include lab %}
362362

foundations/index.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ Explore an introduction to core concepts of the [Git](https://git-scm.com) techn
3737

3838
---
3939

40-
![Gitl logo](../assets/diagrams/git-logo-black.svg)
40+
![Git logo](../assets/diagrams/git-logo-black.svg)
4141

4242
---
4343

@@ -249,7 +249,7 @@ Repositories can be created in numerous ways, including:
249249
* With a GitHub GUI
250250
* With `git init` at the command line
251251

252-
And important decision when creating your repository is in its name. Giving it a human readable, quick-to-identify, and sensible name makes it most effective and efficient for both yourself, and your colleagues to understand.
252+
An important decision when creating your repository is in its name. Giving it a human readable, quick-to-identify, and sensible name makes it most effective and efficient for both yourself, and your colleagues to understand.
253253

254254

255255

@@ -339,7 +339,7 @@ Just as with the Git technology operating on GitHub, local repositories also use
339339

340340
## Exploring the GitHub Flow
341341

342-
Discover the simplicity and flexibility in Git-based collaboration workflows with context-specific sets of changes and code review via pull requests
342+
Discover the simplicity and flexibility in Git-based collaboration workflows with context-specific sets of changes and code review via Pull Requests
343343

344344
---
345345

@@ -355,13 +355,13 @@ Discover the simplicity and flexibility in Git-based collaboration workflows wit
355355
1. Using the GitHub web UI, create a branch with an articulate feature name
356356
2. Make two distinct commits to the branch, each contributing part of the feature's changes
357357
3. Return to the homepage of the repository by clicking the repository's name
358-
4. Notice the suggestion message asking if you'd like to "compare and pull request"
358+
4. Notice the suggestion message asking if you'd like to "Compare and Pull Request"
359359
5. Click on *Compare and Pull Request*
360-
6. Describe the reasoning behind the changes on this branch via the pull request
360+
6. Describe the reasoning behind the changes on this branch via the Pull Request
361361
7. @mention a team or colleague, asking for a code review
362362
8. Address the points raised by the reviewers through an additional commit to the branch
363363
9. Ask for a final review and :+1: from a colleague
364-
10. Merge the pull request
364+
10. Merge the Pull Request
365365
{% endcapture %}{% include lab %}
366366

367367
### Details
@@ -390,7 +390,7 @@ A branch is a divergent path in the history of the code base. It may contain an
390390
1. Create a Fork of a repository needing contributions
391391
2. Follow the contribution pattern of the [GitHub Flow](https://guides.github.com/introduction/flow/), with the branch creation and commits happening on your fork of the repository
392392
3. Observe the Network and Members graph that offer visualizations of your commits and fork
393-
4. Merge the pull request
393+
4. Merge the Pull Request
394394
5. Observe your contributions in the original repository, having preserved your username as the author of the code
395395
{% endcapture %}{% include lab %}
396396

@@ -403,7 +403,7 @@ A branch is a divergent path in the history of the code base. It may contain an
403403

404404
## Syncing local and GitHub repos
405405

406-
Publish and syncrhonize local commit history with a GitHub hosted repository from graphical clients and command line.
406+
Publish and synchronize local commit history with a GitHub hosted repository from graphical clients and command line.
407407

408408
---
409409

0 commit comments

Comments
 (0)