Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add some missing spaces before "(DSL)" #1279

Merged
merged 1 commit into from
Feb 3, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/reference/guide/05-Basic-Def.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ which is discouraged because it makes your build non-portable.
### How build.sbt defines settings

`build.sbt` defines subprojects, which holds a sequence of key-value pairs
called *setting expressions* using *build.sbt domain-specific language(DSL)*.
called *setting expressions* using *build.sbt domain-specific language (DSL)*.

```scala
ThisBuild / organization := "com.example"
Expand Down
2 changes: 1 addition & 1 deletion src/reference/guide/06-Task-Graph.md
Original file line number Diff line number Diff line change
Expand Up @@ -359,7 +359,7 @@ Compile / scalaSource := {

### What's the point of the build.sbt DSL?

We use the `build.sbt` domain-specific language(DSL) to construct a DAG of settings and tasks.
We use the `build.sbt` domain-specific language (DSL) to construct a DAG of settings and tasks.
The setting expressions encode settings, tasks and the dependencies among them.

This structure is common to [Make][Make] (1976), [Ant][Ant] (2000), and [Rake][Rake] (2003).
Expand Down