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

Commit fcea777

Browse files
committed
minor cleanups
1 parent f52b215 commit fcea777

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
@@ -32,17 +32,17 @@ lazy val compilerInterfaceRoot = (project in file("."))
3232
crossScalaVersions := Vector(),
3333
headerLicense := (ThisBuild / headerLicense).value,
3434
onLoadMessage := {
35-
""" _ __ _ __ ____
36-
| _________ ____ ___ ____ (_) /__ _____ (_)___ / /____ _____/ __/___ _________
35+
""" _ __ _ __ ____
36+
| _________ ____ ___ ____ (_) /__ _____ (_)___ / /____ _____/ __/___ _________
3737
| / ___/ __ \/ __ `__ \/ __ \/ / / _ \/ ___/_____/ / __ \/ __/ _ \/ ___/ /_/ __ `/ ___/ _ \
3838
| / /__/ /_/ / / / / / / /_/ / / / __/ / /_____/ / / / / /_/ __/ / / __/ /_/ / /__/ __/
39-
| \___/\____/_/ /_/ /_/ .___/_/_/\___/_/ /_/_/ /_/\__/\___/_/ /_/ \__,_/\___/\___/
40-
| /_/
39+
| \___/\____/_/ /_/ /_/ .___/_/_/\___/_/ /_/_/ /_/\__/\___/_/ /_/ \__,_/\___/\___/
40+
| /_/
4141
|welcome to the build for sbt/compiler-interface.
4242
|""".stripMargin +
4343
(if (sys.props("java.specification.version") != "1.8")
4444
s"""!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
45-
| Java versions is ${sys.props("java.specification.version")}. We recommend 1.8.
45+
| Java version is ${sys.props("java.specification.version")}. We recommend 1.8.
4646
|!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!""".stripMargin
4747
else "")
4848
},

0 commit comments

Comments
 (0)