Skip to content

Commit

Permalink
localize #130
Browse files Browse the repository at this point in the history
  • Loading branch information
eed3si9n committed Apr 9, 2015
1 parent bcaed1b commit 4205ec5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/tutorial/ja/12-Organizing-Build.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,13 +100,13 @@ import Dependencies._

lazy val commonSettings = Seq(
version := "0.1.0",
scalaVersion = "$example_scala_version$"
scalaVersion := "$example_scala_version$"
)

lazy val backend = (project in file("backend")).
settings(commonSettings: _*).
settings(
libraryDependencies += backendDeps
libraryDependencies ++= backendDeps
)
```

Expand Down
4 changes: 2 additions & 2 deletions src/tutorial/zh-cn/12-Organizing-Build.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,13 +77,13 @@ import Dependencies._

lazy val commonSettings = Seq(
version := "0.1.0",
scalaVersion = "$example_scala_version$"
scalaVersion := "$example_scala_version$"
)

lazy val backend = (project in file("backend")).
settings(commonSettings: _*).
settings(
libraryDependencies += backendDeps
libraryDependencies ++= backendDeps
)
```

Expand Down

0 comments on commit 4205ec5

Please sign in to comment.