Skip to content

Commit

Permalink
Merge pull request #1279 from ShreckYe/add-missing-spaces-before-dsl
Browse files Browse the repository at this point in the history
Add some missing spaces before "(DSL)"
  • Loading branch information
eed3si9n authored Feb 3, 2025
2 parents 1040469 + b314b62 commit f8ce3f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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

0 comments on commit f8ce3f5

Please sign in to comment.