Skip to content

Commit 795214f

Browse files
Formatting.
1 parent c00eceb commit 795214f

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

content/install-guides/sbt.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ tool_install: true
2020
weight: 1
2121
---
2222

23-
[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

2727
{{% notice Note %}}
2828
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.
@@ -31,7 +31,7 @@ It is now called *sbt* in all lowercase letters, which emphasises the fact that
3131

3232
## What should I consider before installing sbt on Arm?
3333

34-
Before installing sbt, ensure you have Java installed on your system as sbt requires Java to run.
34+
Before installing `sbt`, ensure you have Java installed on your system as `sbt` requires Java to run.
3535

3636
See the [Java install guide](/install-guides/java/) for more information.
3737

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

5151
## How do I install sbt for Ubuntu on Arm?
5252

53-
You can install sbt using the Ubuntu package manager.
53+
You can install `sbt` using the Ubuntu package manager.
5454

55-
First, you need to add the sbt repository:
55+
First, you need to add the `sbt` repository:
5656

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

64-
Next, install sbt:
64+
Next, install `sbt`:
6565

6666
```bash
6767
sudo apt-get update
6868
sudo apt-get install sbt -y
6969
```
7070

71-
Run the sbt version command to confirm the sbt and Java installation:
71+
Run the `sbt` version command to confirm the `sbt` and Java installation:
7272

7373
```bash
7474
sbt --version
@@ -83,4 +83,4 @@ sbt version in this project: 1.10.7
8383
sbt script version: 1.10.7
8484
```
8585

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

0 commit comments

Comments
 (0)