Skip to content

Commit c00eceb

Browse files
Editorial.
1 parent 6b4597f commit c00eceb

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

content/install-guides/sbt.md

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,16 @@ weight: 1
2424

2525
sbt is available for Windows, macOS, Linux and supports the Arm architecture.
2626

27+
{{% notice Note %}}
28+
When the project was created, it was called *Simple Build Tool*, but quickly evolved to *sbt*. Some have incorrectly redefined it to *Scala Build Tool*, which does not reflect the fact that sbt works with Java-only projects.
29+
30+
It is now called *sbt* in all lowercase letters, which emphasises the fact that it is not an acronym.{{% /notice %}}
31+
2732
## What should I consider before installing sbt on Arm?
2833

2934
Before installing sbt, ensure you have Java installed on your system as sbt requires Java to run.
3035

31-
Check the [Java install guide](/install-guides/java/) for more information.
36+
See the [Java install guide](/install-guides/java/) for more information.
3237

3338
Confirm you are using an Arm machine by running:
3439

@@ -45,9 +50,9 @@ If you see a different result, you are not using an Arm computer running 64-bit
4550

4651
## How do I install sbt for Ubuntu on Arm?
4752

48-
sbt can be installed using the Ubuntu package manager.
53+
You can install sbt using the Ubuntu package manager.
4954

50-
First, you will need to add the sbt repository:
55+
First, you need to add the sbt repository:
5156

5257
```bash
5358
sudo apt-get update
@@ -63,13 +68,13 @@ sudo apt-get update
6368
sudo apt-get install sbt -y
6469
```
6570

66-
Confirm the sbt and Java installation by running the sbt version command:
71+
Run the sbt version command to confirm the sbt and Java installation:
6772

6873
```bash
6974
sbt --version
7075
```
7176

72-
The version command also confirms you have a working Java.
77+
The version command also confirms you have a working Java setup.
7378

7479
The version is printed and looks similar to:
7580

@@ -78,4 +83,4 @@ sbt version in this project: 1.10.7
7883
sbt script version: 1.10.7
7984
```
8085

81-
You are ready to use sbt.
86+
You are now ready to use sbt.

0 commit comments

Comments
 (0)