Skip to content

Commit 94fb6d9

Browse files
committed
@stableabi: fix malformed list.
1 parent 3cfc5ef commit 94fb6d9

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

sips/pending/_posts/2017-01-13-binary-compatibility.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,10 +77,11 @@ the current approach is to either develop them in Java or to use best guess to r
7777

7878
There's also a different approach which is used by SBT: instead of publishing a binary `compiler-interface`, sources are published instead that would be locally compiled.
7979

80-
Examples:
81-
1. Zinc\[[8]\] is writing their interfaces in Java because the interface has to be Scala version agnostic, as it is shipped in every sbt release, independently of Scala version that was used to compiler zinc or will be used in to compile the project.
80+
Examples:
81+
1. Zinc\[[8]\] is writing their interfaces in Java because the interface has to be Scala version agnostic, as it is shipped in every sbt release, independently of Scala version that was used to compiler zinc or will be used in to compile the project.
8282
SBT additionally compiles on demand the compiler bridge, which implements this Java interface.
83-
2. Dotty\[[7]\] currently uses java defined interfaces as public API for IntelliJ in order to ensure binary compatibility.
83+
84+
2. Dotty\[[7]\] currently uses java defined interfaces as public API for IntelliJ in order to ensure binary compatibility.
8485
These interfaces can be replaced by `@stableABI` annotated traits to reach the same goal.
8586

8687
## Design Guidelines

0 commit comments

Comments
 (0)