Skip to content

Commit 6b4597f

Browse files
Corrected name to lower-case sbt.
1 parent dc01467 commit 6b4597f

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

content/install-guides/sbt.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: SBT (Scala Build Tool)
2+
title: sbt
33

44
author_primary: Jason Andrews
55
minutes_to_complete: 10
@@ -20,13 +20,13 @@ tool_install: true
2020
weight: 1
2121
---
2222

23-
The Scala Build Tool, [SBT](https://www.scala-sbt.org/), is a popular build tool for Scala and Java projects.
23+
[sbt](https://www.scala-sbt.org/) is a popular build tool for Scala and Java projects.
2424

25-
SBT is available for Windows, macOS, Linux and supports the Arm architecture.
25+
sbt is available for Windows, macOS, Linux and supports the Arm architecture.
2626

27-
## What should I consider before installing SBT on Arm?
27+
## What should I consider before installing sbt on Arm?
2828

29-
Before installing SBT, ensure you have Java installed on your system as SBT requires Java to run.
29+
Before installing sbt, ensure you have Java installed on your system as sbt requires Java to run.
3030

3131
Check the [Java install guide](/install-guides/java/) for more information.
3232

@@ -43,11 +43,11 @@ aarch64
4343

4444
If you see a different result, you are not using an Arm computer running 64-bit Linux.
4545

46-
## How do I install SBT for Ubuntu on Arm?
46+
## How do I install sbt for Ubuntu on Arm?
4747

48-
SBT can be installed using the Ubuntu package manager.
48+
sbt can be installed using the Ubuntu package manager.
4949

50-
First, you'll need to add the SBT repository:
50+
First, you will need to add the sbt repository:
5151

5252
```bash
5353
sudo apt-get update
@@ -56,14 +56,14 @@ echo "deb https://repo.scala-sbt.org/scalasbt/debian all main" | sudo tee /etc/a
5656
curl -sL "https://keyserver.ubuntu.com/pks/lookup?op=get&search=0x99E82A75642AC823" | sudo apt-key add
5757
```
5858

59-
Next, install SBT:
59+
Next, install sbt:
6060

6161
```bash
6262
sudo apt-get update
6363
sudo apt-get install sbt -y
6464
```
6565

66-
Confirm the SBT and Java installation by running the SBT version command:
66+
Confirm the sbt and Java installation by running the sbt version command:
6767

6868
```bash
6969
sbt --version
@@ -78,4 +78,4 @@ sbt version in this project: 1.10.7
7878
sbt script version: 1.10.7
7979
```
8080

81-
You are ready to use the Scala Build Tool, `sbt`.
81+
You are ready to use sbt.

0 commit comments

Comments
 (0)