Skip to content

Minor language fixes #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/models/chapters/commandlineChapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ const commandlineChapter = createChapter('Command-line', {
</Fragment>
)),
new ChapterText(
() => 'Let’s take a look at the differnt parts of the console.',
() => 'Let’s take a look at the different parts of the console.',
{ skip: true },
),
new ChapterText(() => (
Expand Down
6 changes: 3 additions & 3 deletions src/models/chapters/workingInATeamChapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const workingInATeamChapter = createChapter('Working in a Team', {
Working on a project usally means working in a team. This means we need
to exchange our files, for example by using a{' '}
<Tooltip name="cloud">cloud</Tooltip>. Let’s take a closer look at a
project e.g. with one file and two users.
project with one file and two users.
</Fragment>
)),
new ChapterText(() => (
Expand All @@ -28,8 +28,8 @@ const workingInATeamChapter = createChapter('Working in a Team', {
)),
new ChapterText(() => (
<Fragment>
Once the file beeing uploaded a second user B wants to work on the file,
too. They download the file, add some changes and upload the file again.
Once the file has uploaded, a second user wants to work on the file,
too. User B downloads the file, makes some changes, and uploads the file back to the cloud.
</Fragment>
)),
new ChapterText(() => <em>This goes on and on and on …</em>),
Expand Down