Skip to content

Commit 02c8634

Browse files
committed
fix typos
1 parent c9d955a commit 02c8634

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

experimental-backend.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This gives you the chance to preview pieces of Scala 2.12 just by enabling some
1212
`-Ybackend:GenBCode` enables the new backend.
1313

1414
GenBCode without any further compiler flags is a drop-in replacement for the current backend ("GenASM").
15-
The generated bytecode is binary compatible, altough not exactly the same; some instruction sequences may differ.
15+
The generated bytecode is binary compatible, although not exactly the same; some instruction sequences may differ.
1616
If you find a binary incompatibility, please [report an issue](https://issues.scala-lang.org/secure/Dashboard.jspa).
1717

1818
## Delambdafy-Method
@@ -22,7 +22,7 @@ If you find a binary incompatibility, please [report an issue](https://issues.sc
2222
Traditionally, the anonymous class generated for a lambda contains the lambda body in the `apply` method of the class.
2323
When using delambdafy-method, a method containing the lambda body is generated for each lambda, and the anonymous class delegates to this method.
2424

25-
Delambdafy-method is a requiement for emitting lambdas in Java 8 style, as explained in detail in [this Gist by @retronym](https://gist.github.com/retronym/0178c212e4bacffed568).
25+
Delambdafy-method is a requirement for emitting lambdas in Java 8 style, as explained in detail in [this Gist by @retronym](https://gist.github.com/retronym/0178c212e4bacffed568).
2626

2727
## Target jvm-1.8
2828

@@ -46,7 +46,7 @@ The Scala 2.11.7 compiler emits lambdas in Java 8 style (using `invokedynamic` a
4646
- `-target:jvm-1.8` is enabled
4747
- the scala-java8-compat library is on the compiler's classpath
4848

49-
In an SBT project, this can be achieved using the following settins:
49+
In an SBT project, this can be achieved using the following settings:
5050

5151
libraryDependencies += "org.scala-lang.modules" %% "scala-java8-compat" % "0.5.0"
5252

@@ -64,4 +64,4 @@ As part of the new backend for Scala 2.12 we are developing a new inliner and by
6464
The inliner is already available in Scala 2.11.7 and can be enabled using the `-Yopt` compiler option.
6565
Check `-Yopt:help` to see the available optimizations.
6666

67-
If you encounter a bug, please file an issue on this bugracker: https://github.com/scala-opt/scala/issues
67+
If you encounter a bug, please file an issue on this bugtracker: https://github.com/scala-opt/scala/issues

0 commit comments

Comments
 (0)