Skip to content

Commit 6b4b48e

Browse files
committed
fix typo and remove trailing whitespace in BUILDING.md
1 parent 15acfdb commit 6b4b48e

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

BUILDING.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Requirements to build the full project:
5656
`sudo xattr -r -d com.apple.quarantine /Library/Java/JavaVirtualMachines/graalvm-<current version of graalvm>`
5757
* Add the required environment variables to your shell using the `export` command. You can permanently install the environment variables by appending the `export` commands into your shell configuration file `~/.zshrc` or `.bashrc` or other.
5858
```shell
59-
export JAVA_8_HOME=/Library/Java/JavaVirtualMachines/zulu-8.jdk/Contents/Home
59+
export JAVA_8_HOME=/Library/Java/JavaVirtualMachines/zulu-8.jdk/Contents/Home
6060
export JAVA_11_HOME=/Library/Java/JavaVirtualMachines/zulu-11.jdk/Contents/Home
6161
export JAVA_17_HOME=/Library/Java/JavaVirtualMachines/zulu-17.jdk/Contents/Home
6262
export JAVA_21_HOME=/Library/Java/JavaVirtualMachines/zulu-21.jdk/Contents/Home
@@ -65,8 +65,8 @@ export JAVA_HOME=$JAVA_8_HOME
6565
```
6666
* Restart your shell after applying the changes if you appended the commands to your shell configuration file.
6767

68-
> [!NOTE]
69-
> ARM users: there is no Oracle JDK v8 for ARM.
68+
> [!NOTE]
69+
> ARM users: there is no Oracle JDK v8 for ARM.
7070
> It's recommended to use [Azul's Zulu](https://www.azul.com/downloads/?version=java-8-lts&architecture=arm-64-bit&package=jdk#zulu) builds of Java 8.
7171
> [Amazon Corretto](https://aws.amazon.com/corretto/) builds have also been proven to work.
7272
@@ -77,7 +77,7 @@ export JAVA_HOME=$JAVA_8_HOME
7777

7878
* Download and extract JDK 8, 11, 17 and 21 from [Eclipse Temurin releases](https://adoptium.net/temurin/releases/) and GraalVM from [Oracle downloads](https://www.graalvm.org/downloads/).
7979
* Install the GraalVM native image requirements for native builds by following [the GraalVM official documentation](https://www.graalvm.org/latest/reference-manual/native-image/#prerequisites).
80-
* Add the required environment variables to your shell using the `export` command. You can permanently install the environment variables by appending the `export` commands into your shell configuration file `~/.zshrc` or `~/.bashrc` or other.
80+
* Add the required environment variables to your shell using the `export` command. You can permanently install the environment variables by appending the `export` commands into your shell configuration file `~/.zshrc` or `~/.bashrc` or other.
8181
```shell
8282
export JAVA_8_HOME=/<path to extracted archive>/jdk8u<current version of JDK 8>
8383
export JAVA_11_HOME=/<path to extracted archive>/jdk-11.<current version of JDK 11>
@@ -101,7 +101,7 @@ export JAVA_HOME=$JAVA_8_HOME
101101

102102
### Install git
103103

104-
**On MacOS:**
104+
**On MacOS:**
105105

106106
You can trigger the installation by running any `git` command from the terminal, e.g. `git --version`.
107107
If not installed, the terminal will prompt you to install it.
@@ -110,7 +110,7 @@ If not installed, the terminal will prompt you to install it.
110110

111111
Run `apt-get install git`.
112112

113-
**On Windows:**
113+
**On Windows:**
114114

115115
Download and install [the installer](https://git-scm.com/download/win) from the official website.
116116

@@ -138,7 +138,7 @@ cp .githooks/pre-commit .git/hooks/
138138

139139
# On Windows
140140
cd dd-trace-java
141-
copy .githooks/pre-comit .git/hooks/
141+
copy .githooks/pre-commit .git/hooks/
142142
```
143143

144144
> [!TIP]
@@ -168,7 +168,7 @@ git config --local submodule.recurse true
168168

169169
You can confirm that your development environment is properly set up using the [quick check](#development-environment-quick-check) `setup.sh` script.
170170

171-
> [!NOTE]
171+
> [!NOTE]
172172
> The `setup.sh` script is only available for MacOS and Linux.
173173
174174
### Build the project

0 commit comments

Comments
 (0)