Skip to content

Commit e75e35b

Browse files
authored
Merge pull request #736 from stepnem/rn116copyedit
rn-116: minor copy edit
2 parents 516e666 + 5ce545a commit e75e35b

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

rev_news/drafts/edition-116.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ This edition covers what happened during the months of September and October 202
6969
killed using the Control-C keys on a terminal.
7070

7171
The exit code associated with a signal is '128 + the signal number',
72-
for example as the Control-C keys send a `SIGINT` signal, which signal
72+
for example as the Control-C keys send a `SIGINT` signal, whose signal
7373
number is 2, processes killed this way should exit with code '128 + 2',
7474
so 130.
7575

@@ -119,19 +119,19 @@ _Editor's note: Just like in our previous edition, we return with another
119119
open-source projects to contribute to. Git and VLC were the only
120120
open-source C-written software that I was familiar with and used in
121121
day-to-day life, so I decided to start contributing to Git out of the two.
122-
By the time GSoC came around, Git was the only open source
122+
By the time GSoC came around, Git was the only open-source
123123
community that I was familiar with, so I decided to choose it as my
124124
GSoC organization.
125125

126126
* How do you feel your contribution has impacted the Git community
127-
or the broader open source ecosystem?
127+
or the broader open-source ecosystem?
128128

129129
[My project](https://summerofcode.withgoogle.com/programs/2024/projects/tlh611d7)
130130
was about moving and improving reftable tests, so I think
131131
my contributions made life somewhat easier for other Git hackers,
132132
especially those who frequent the reftable sub-project. My project
133133
didn’t really affect any user-facing aspect of Git, so I don’t think it had
134-
a huge impact on the broader open source ecosystem, besides the
134+
a huge impact on the broader open-source ecosystem, besides the
135135
fact that it gained another lifelong contributor.
136136

137137
* Is there any aspect of Git that you now see differently after having
@@ -196,7 +196,7 @@ _Editor's note: Just like in our previous edition, we return with another
196196

197197
The [Git GUI](https://git-scm.com/docs/git-gui) tool. I believe that
198198
would make Git far more accessible than it currently is and get it
199-
incorporated in a lot more peoples’ day-to-day works.
199+
incorporated in a lot more people’s day-to-day works.
200200

201201
* If you could remove something from Git without worrying about
202202
backwards compatibility, what would it be?
@@ -262,8 +262,8 @@ _Editor's note: Just like in our previous edition, we return with another
262262

263263
__Various__
264264
+ [Highlights from Git 2.47](https://github.blog/open-source/git/highlights-from-git-2-47/)
265-
by Taylor Blau on GitHub Blog. Those include features like incremental multi-pack indexes,
266-
`%(is-base:)` atom for `git for-each-ref`,
265+
by Taylor Blau on GitHub Blog. Includes features like incremental multi-pack indexes,
266+
`%(is-base:)` atom for `git for-each-ref`, the new
267267
[Platform Support Policy](https://github.com/git/git/blob/v2.47.0/Documentation/technical/platform-support.txt)” document,
268268
`git mergetool` directly supporting Visual Studio Code merge tool, and others.
269269
+ [What's new in Git 2.47.0?](https://about.gitlab.com/blog/2024/10/07/whats-new-in-git-2-47-0/)
@@ -272,7 +272,7 @@ __Various__
272272
(see [Beginner's guide to the Git reftable format](https://about.gitlab.com/blog/2024/05/30/a-beginners-guide-to-the-git-reftable-format/)),
273273
`init.defaultObjectFormat` configuration option that can be set to `sha256`,
274274
`git refs verify`, and others.
275-
+ Tower is running [Git GUIs User's Survey](https://gittower.typeform.com/git-survey)
275+
+ Tower is running a [Git GUIs User's Survey](https://gittower.typeform.com/git-survey)
276276
for people who do not 100% of the time use Git in the terminal.
277277

278278

@@ -288,7 +288,7 @@ __Light reading__
288288
+ Contrast with [Using Git to Manage Todos](https://jezenthomas.com/2015/10/using-git-to-manage-todos/
289289
by Jezen Thomas (2015), mentioned in [Git Rev News Edition #9](https://git.github.io/rev_news/2015/11/11/edition-9/),
290290
which is about using Git to help manage TODO or FIXME comments in the codebase
291-
(assuming that for example your IDE does not have plugin for managing TODOs).
291+
(assuming that for example your IDE does not have a plugin for managing TODOs).
292292
+ One can also consider using a CLI tool that stores data in plain text files
293293
for managing TODOs, like [Taskwarrior](https://taskwarrior.org/). Plain text
294294
files work well with Git.
@@ -317,12 +317,12 @@ __Scientific papers__
317317
__Git tools and sites__
318318
+ [Reviewing git contributions via email](https://git-am.io/) (<https://git-am.io/>)
319319
is a companion piece to [interactive guide on sending patches with git send-email](https://git-send-email.io/)
320-
(<https://git-send-email.io/>) - which guide was mentioned in
320+
(<https://git-send-email.io/>); the latter was mentioned in
321321
[Git Rev News Edition #50](https://git.github.io/rev_news/2019/04/26/edition-50/)
322322
[#68](https://git.github.io/rev_news/2020/10/30/edition-68/), and
323323
[#92](https://git.github.io/rev_news/2022/10/26/edition-92/).
324324
+ ["Data Management" section of Awesome MLOps](https://github.com/kelvins/awesome-mlops#data-management)
325-
include also tools related to versioning data like
325+
also includes tools related to versioning data like
326326
+ [Dolt](https://github.com/dolthub/dolt) ([Git Rev News #62](https://git.github.io/rev_news/2020/04/23/edition-62/)),
327327
+ [DVC](https://dvc.org/) (first mentioned in [Git Rev News #42](https://git.github.io/rev_news/2018/08/22/edition-42/),
328328
then in [#63](https://git.github.io/rev_news/2020/05/28/edition-63/),
@@ -333,7 +333,7 @@ __Git tools and sites__
333333
among others),
334334
+ [Dud](https://kevin-hanselman.github.io/dud/), improving on DVC, but with narrowed scope,
335335
+ [Intake](https://intake.readthedocs.io/) ([Git Rev News #96](https://git.github.io/rev_news/2023/02/28/edition-96/)),
336-
+ See also the discussion in issue #337 in Intake repository:
336+
+ See also the discussion in issue #337 in the Intake repository:
337337
[Data versioning/validation: Comparing Intake with DVC, Quilt and Great Expectations](https://github.com/intake/intake/issues/337)
338338
+ [lakeFS](https://lakefs.io/) ([Git Rev News #78](https://git.github.io/rev_news/2021/08/31/edition-78/)),
339339
+ [Quilt](https://www.quiltdata.com/) / [Quilt Data](https://www.quiltdata.com/)
@@ -342,9 +342,9 @@ __Git tools and sites__
342342
a local-first task manager/bug tracker that stores everything within your git repository,
343343
and which can sync issues to/from GitHub or GitLab.
344344
Written in Rust, under MIT license.
345-
+ [Bruno](https://www.usebruno.com/) is fast and <b>Git</b>-friendly opensource API client,
345+
+ [Bruno](https://www.usebruno.com/) is a fast and <b>Git</b>-friendly open-source API client,
346346
similar to Postman, Insomnia and similar tools. It stores collections directly
347-
in a folder on your filesystem, in a plain text markup language, Bru.
347+
in a folder on your filesystem in a plain text markup language, Bru.
348348
+ Compare with [Simple Web Application Test (SWAT)](https://github.com/melezhik/swat),
349349
web application oriented testing framework, with test plan stored as plain text files
350350
in specially named directories.
@@ -357,7 +357,7 @@ __Git tools and sites__
357357
[2.47.0(1)](https://github.com/git-for-windows/git/releases/tag/v2.47.0.windows.1),
358358
[2.47.0-rc1(1)](https://github.com/git-for-windows/git/releases/tag/v2.47.0-rc1.windows.1)
359359
+ libgit2 [1.8.3](https://github.com/libgit2/libgit2/releases/tag/v1.8.3)
360-
+ GitLab [17.5.1, 17.4.3, 17.3.6](https://about.gitlab.com/releases/2024/10/23/patch-release-gitlab-17-5-1-released/)
360+
+ GitLab [17.5.1, 17.4.3, 17.3.6](https://about.gitlab.com/releases/2024/10/23/patch-release-gitlab-17-5-1-released/),
361361
[17.5](https://about.gitlab.com/releases/2024/10/17/gitlab-17-5-released/),
362362
[17.4.2, 17.3.5, 17.2.9](https://about.gitlab.com/releases/2024/10/09/patch-release-gitlab-17-4-2-released/)
363363
+ Gerrit Code Review [3.10.2](https://www.gerritcodereview.com/3.10.html#3102),

0 commit comments

Comments
 (0)