Skip to content
This repository has been archived by the owner. It is now read-only.

Commit 7e42e54

Browse files
committed
minor cleanups
1 parent fb0b96c commit 7e42e54

File tree

2 files changed

+9
-12
lines changed

2 files changed

+9
-12
lines changed

README.md

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
1-
Compiler Interface
2-
==================
1+
The compiler interface is a binary contract between Zinc and the Scala
2+
compiler. The interface is written in Java. All details are subject
3+
to change.
34

4-
Compiler Interface is an internal implementation of Zinc,
5-
used as a binary contract (written in Java) between Zinc and Scala Compilers.
6-
All details are subject to change.
7-
8-
### about compiler bridges
5+
### About compiler bridges
96

107
An implementation of a compiler interface specific to a Scala version is called a compiler bridge.
118
A build tool is responsible for locating a compiler bridge to use Zinc.

build.sbt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,17 +30,17 @@ lazy val compilerInterfaceRoot = (project in file("."))
3030
crossScalaVersions := Vector(),
3131
headerLicense := (ThisBuild / headerLicense).value,
3232
onLoadMessage := {
33-
""" _ __ _ __ ____
34-
| _________ ____ ___ ____ (_) /__ _____ (_)___ / /____ _____/ __/___ _________
33+
""" _ __ _ __ ____
34+
| _________ ____ ___ ____ (_) /__ _____ (_)___ / /____ _____/ __/___ _________
3535
| / ___/ __ \/ __ `__ \/ __ \/ / / _ \/ ___/_____/ / __ \/ __/ _ \/ ___/ /_/ __ `/ ___/ _ \
3636
| / /__/ /_/ / / / / / / /_/ / / / __/ / /_____/ / / / / /_/ __/ / / __/ /_/ / /__/ __/
37-
| \___/\____/_/ /_/ /_/ .___/_/_/\___/_/ /_/_/ /_/\__/\___/_/ /_/ \__,_/\___/\___/
38-
| /_/
37+
| \___/\____/_/ /_/ /_/ .___/_/_/\___/_/ /_/_/ /_/\__/\___/_/ /_/ \__,_/\___/\___/
38+
| /_/
3939
|welcome to the build for sbt/compiler-interface.
4040
|""".stripMargin +
4141
(if (sys.props("java.specification.version") != "1.8")
4242
s"""!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
43-
| Java versions is ${sys.props("java.specification.version")}. We recommend 1.8.
43+
| Java version is ${sys.props("java.specification.version")}. We recommend 1.8.
4444
|!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!""".stripMargin
4545
else "")
4646
},

0 commit comments

Comments
 (0)