Skip to content

Commit fbf651e

Browse files
authored
Make minor readability improvements to README and BUILDING files (#10531)
Make minor readability improvements to README and BUILDING files Merge branch 'master' into sarahchen6/readme-improvements Co-authored-by: sarah.chen <sarah.chen@datadoghq.com>
1 parent 8c26540 commit fbf651e

2 files changed

Lines changed: 17 additions & 17 deletions

File tree

BUILDING.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ This documentation provides information for developers to set up their environme
1616

1717
### Quick check
1818

19-
To check that your development environment is properly set up to build the project, from the project root run on macOS or Linux:
19+
To check that your development environment is properly set up to build the project, run the following command from the project root on macOS or Linux:
2020
```shell
2121
./setup.sh
2222
```
@@ -54,40 +54,40 @@ If there is any issue with your output, check the requirements below and use the
5454

5555
Requirements to build the full project:
5656

57-
* A recent version (21+) of JDK,
58-
* The `git` command line must be installed,
59-
* A container runtime environment must be available to run all tests (e.g. Docker Desktop).
57+
* JDK version is 21+,
58+
* The `git` command line is installed,
59+
* A container runtime environment is available to run all tests (e.g. Docker Desktop).
6060

6161
### Install JDK
6262

6363
Java is required to run Gradle, the project build tool.
64-
Gradle will find any locally installed JDK and can download any missing JDK versions needed for the project build and testing.
64+
Gradle will find any locally installed JDK and download any missing JDK versions needed for the project build and testing.
6565

6666
#### macOS
6767

68-
Install a recent (21+) JDK using `brew`:
68+
Install JDK 21 using `brew`:
6969
```shell
7070
brew install --cask zulu@21
7171
```
7272

7373
#### Linux
7474

75-
Use your distribution package manager to install a recent (21+) JDK:
75+
Use your distribution package manager to install JDK 21:
7676
```shell
7777
apt install openjdk-21-jdk
7878
```
79-
Alternatively, manually download and install it from [Eclipse Temurin releases](https://adoptium.net/temurin/releases/).
79+
Alternatively, manually download and install from [Eclipse Temurin releases](https://adoptium.net/temurin/releases/).
8080

8181
Add the `JAVA_HOME` environment variable to your shell using the `export` command.
8282
You can permanently set it by appending the `export` command to your shell configuration file such as `~/.zshrc`, `~/.bashrc` or similar.
8383
```shell
8484
export JAVA_HOME=/<path to extracted archive>/jdk-21.x.x
8585
```
86-
Restart your shell after applying the changes if you appended the commands to your shell configuration file.
86+
If you appended the commands to your shell configuration file, restart your shell after applying the changes.
8787

8888
#### Windows
8989

90-
Install a recent (21+) JDK using the Windows package manager `winget`:
90+
Install JDK 21 using the Windows package manager `winget`:
9191
```pwsh
9292
winget install --id EclipseAdoptium.Temurin.21.JDK
9393
```
@@ -114,7 +114,7 @@ apt install git
114114

115115
#### Windows
116116

117-
Download and install the installer from [the official website](https://git-scm.com/download/win) or install it using the Windows package manager `winget`:
117+
Download and install the installer from [the official website](https://git-scm.com/download/win), or install it using the Windows package manager `winget`:
118118

119119
```pwsh
120120
winget install --id git.git
@@ -167,7 +167,7 @@ winget install --id Docker.DockerDesktop
167167
168168
> [!NOTE]
169169
> The git hooks will check that your code is properly formatted before committing.
170-
> This is done both to avoid future merge conflicts and ensure uniformity inside the code base.
170+
> This is done both to avoid future merge conflicts and ensure uniformity across the code base.
171171
172172
* Configure git to automatically update submodules.
173173
```shell
@@ -188,11 +188,11 @@ winget install --id Docker.DockerDesktop
188188
### Configure Akka Token
189189
> [!NOTE]
190190
> You can skip this step if you don’t need instrumentation for the **akka-http-10.6** module.
191-
> For background on why Akka now requires authentication, see this [article](https://akka.io/blog/why-we-are-changing-the-license-for-akka).
191+
> For background on why Akka now requires authentication, see [this article](https://akka.io/blog/why-we-are-changing-the-license-for-akka).
192192

193193
To enable access to Akka artifacts hosted on Lightbend’s private repository, you’ll need to configure an authentication token.
194-
1. Obtain a repository token. Visit the Akka account [page](https://account.akka.io/token) to generate a secure repository token.
195-
2. Set up the environment variable. Create an environment variable named:
194+
1. Obtain a repository token by visiting the Akka account [page](https://account.akka.io/token) to generate a secure repository token.
195+
2. Create an environment variable named:
196196
```shell
197197
ORG_GRADLE_PROJECT_akkaRepositoryToken=<your_token>
198198
```

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,14 @@ Take a look at the [APM Glossary][visualization docs].
3535

3636
Before contributing to the project, please take a moment to read our brief [Contribution Guidelines](CONTRIBUTING.md).
3737
Then check our guides:
38-
* [How to setup a development and build the project](BUILDING.md),
38+
* [How to set up a development environment and build the project](BUILDING.md),
3939
* [How to create a new instrumentation](docs/add_new_instrumentation.md),
4040
* [How to test](docs/how_to_test.md),
4141

4242
Or our reference documents:
4343
* [How instrumentations work](docs/how_instrumentations_work.md).
4444

4545
## Releases
46-
Datadog will generally create a new minor release the first full week of every month.
46+
Datadog will generally release a new minor version during the first full week of every month.
4747

4848
See [release.md](docs/releases.md) for more information.

0 commit comments

Comments
 (0)