Skip to content

Commit 7251307

Browse files
committed
Fix typos
1 parent 5ed6a34 commit 7251307

13 files changed

+15
-15
lines changed

SoC-2014-Microprojects.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ and the implementation of that design were all reviewed and discussed,
2828
and after several iterations an improved version of the patch was
2929
accepted into our codebase. As a GSoC student, you will be playing
3030
the role of the developer and engaging in a similar discussion. Get
31-
familar with the flow, need for clarity on both sides (i.e. you need
31+
familiar with the flow, need for clarity on both sides (i.e. you need
3232
to clearly defend your design, and need to ask clarifications when
3333
questions/suggestions you are offered are not clear enough), the pace
3434
at which the discussion takes place, and the general tone of the

SoC-2015-Ideas.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ look for the commit which fixed a bug. It is already possible using
7777
"git bisect", but the user has to type "good" to mean "the bug is
7878
there" and "bad" to mean "the bug is fixed", which isn't convenient.
7979

80-
It would be nice to allow the user to explicitely say "git bisect
80+
It would be nice to allow the user to explicitly say "git bisect
8181
fixed" and "git bisect unfixed" instead. It is actually much harder
8282
than defining "fixed"/"unfixed" as aliases for "bad"/"good".
8383

SoC-2015-Microprojects.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ and the implementation of that design were all reviewed and discussed,
2828
and after several iterations an improved version of the patch was
2929
accepted into our codebase. As a GSoC student, you will be playing
3030
the role of the developer and engaging in a similar discussion. Get
31-
familar with the flow, need for clarity on both sides (i.e. you need
31+
familiar with the flow, need for clarity on both sides (i.e. you need
3232
to clearly defend your design, and need to ask clarifications when
3333
questions/suggestions you are offered are not clear enough), the pace
3434
at which the discussion takes place, and the general tone of the

SoC-2016-Ideas.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ compressed data from one packfile to another.
267267

268268
This would involve looking at the code in git to copy over
269269
optimisations as well as figuring out what parts of libgit2 should be
270-
changed to accomodate these new capabilities.
270+
changed to accommodate these new capabilities.
271271

272272
- Language: C
273273
- Difficulty: medium

SoC-2016-Microprojects.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ and the implementation of that design were all reviewed and discussed,
4040
and after several iterations an improved version of the patch was
4141
accepted into our codebase. As a GSoC student, you will be playing
4242
the role of the developer and engaging in a similar discussion. Get
43-
familar with the flow, need for clarity on both sides (i.e. you need
43+
familiar with the flow, need for clarity on both sides (i.e. you need
4444
to clearly defend your design, and need to ask clarifications when
4545
questions/suggestions you are offered are not clear enough), the pace
4646
at which the discussion takes place, and the general tone of the
@@ -272,7 +272,7 @@ When you find something you are interested to work on, please ask
272272
first on the mailing list if it's worth doing and if it's appropriate
273273
for a microproject before starting to work on what you find. Even if
274274
it looks straitforward, there could be hidden reasons why it is too
275-
difficult or just innappropriate.
275+
difficult or just inappropriate.
276276

277277
### Searching the code base itself
278278

SoC-2017-Microprojects.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ and the implementation of that design were all reviewed and discussed,
3333
and after several iterations an improved version of the patch was
3434
accepted into our codebase. As a GSoC student, you will be playing
3535
the role of the developer and engaging in a similar discussion. Get
36-
familar with the flow, need for clarity on both sides (i.e. you need
36+
familiar with the flow, need for clarity on both sides (i.e. you need
3737
to clearly defend your design, and need to ask clarifications when
3838
questions/suggestions you are offered are not clear enough), the pace
3939
at which the discussion takes place, and the general tone of the
@@ -262,7 +262,7 @@ When you find something you are interested to work on, please ask
262262
first on the mailing list if it's worth doing and if it's appropriate
263263
for a microproject before starting to work on what you find. Even if
264264
it looks straitforward, there could be hidden reasons why it is too
265-
difficult or just innappropriate.
265+
difficult or just inappropriate.
266266

267267
### Searching the code base itself
268268

SoC-2018-Microprojects.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ and the implementation of that design were all reviewed and discussed,
3333
and after several iterations an improved version of the patch was
3434
accepted into our codebase. As a GSoC student, you will be playing
3535
the role of the developer and engaging in a similar discussion. Get
36-
familar with the flow, need for clarity on both sides (i.e. you need
36+
familiar with the flow, need for clarity on both sides (i.e. you need
3737
to clearly defend your design, and need to ask clarifications when
3838
questions/suggestions you are offered are not clear enough), the pace
3939
at which the discussion takes place, and the general tone of the

SoC-2019-Ideas.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ projects versus projects that implement new features though.
120120
Git has an old problem of duplicated implementations of some
121121
logic. For example, Git had at least 4 different implementations to
122122
format command output for different commands. Our previous GSoC
123-
students and Outreachy interns unified some of the formating logic
123+
students and Outreachy interns unified some of the formatting logic
124124
into [ref-filter](https://github.com/git/git/blob/master/ref-filter.h)
125125
and got rid of similar logic in some command specific files. Current
126126
task is to continue this work and reuse ref-filter formatting logic in

SoC-2019-Microprojects.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ and the implementation of that design were all reviewed and discussed,
3333
and after several iterations an improved version of the patch was
3434
accepted into our codebase. As a GSoC student, you will be playing
3535
the role of the developer and engaging in a similar discussion. Get
36-
familar with the flow, need for clarity on both sides (i.e. you need
36+
familiar with the flow, need for clarity on both sides (i.e. you need
3737
to clearly defend your design, and need to ask clarifications when
3838
questions/suggestions you are offered are not clear enough), the pace
3939
at which the discussion takes place, and the general tone of the

SoC-2020-Ideas.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ page though.
2727
Git has an old problem of duplicated implementations of some
2828
logic. For example, Git had at least 4 different implementations to
2929
format command output for different commands. Our previous GSoC
30-
students and Outreachy interns unified some of the formating logic
30+
students and Outreachy interns unified some of the formatting logic
3131
into [ref-filter](https://github.com/git/git/blob/master/ref-filter.h)
3232
and got rid of similar logic in some command specific files. Current
3333
task is to continue this work and reuse ref-filter formatting logic in

SoC-2021-Ideas.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ possible the same code and syntax as the ref-filter formats.
3232
Git used to have an old problem of duplicated implementations of some
3333
logic. For example, Git had at least 4 different implementations to
3434
format command output for different commands. Our previous GSoC
35-
students and Outreachy interns unified some of the formating logic
35+
students and Outreachy interns unified some of the formatting logic
3636
into [ref-filter](https://github.com/git/git/blob/master/ref-filter.h)
3737
and got rid of similar logic in some command specific files.
3838

SoC-2022-Ideas.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ logic. For example, Git had at least 4 different implementations to
8383
format command output for different commands.
8484

8585
Our previous GSoC students and Outreachy interns unified some of the
86-
formating logic into
86+
formatting logic into
8787
[ref-filter](https://github.com/git/git/blob/master/ref-filter.h) and
8888
got rid of similar logic in some command specific files. Current task
8989
is to continue this work and reuse ref-filter formatting logic in

SoC-2023-Ideas.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ logic. For example, Git had at least 4 different implementations to
7777
format command output for different commands.
7878

7979
Our previous GSoC students and Outreachy interns unified some of the
80-
formating logic into
80+
formatting logic into
8181
[ref-filter](https://github.com/git/git/blob/master/ref-filter.h) and
8282
got rid of similar logic in some command specific files. Current task
8383
is to continue this work and reuse ref-filter formatting logic in

0 commit comments

Comments
 (0)