Skip to content

Update README.md - Fix mispelling #4

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ by explicit type annotation because it would break binary compatibility. The typ
Before Java 8 (which 2.12 targets), interface methods cannot have default implementations.
In order to support default methods for traits, Scala 2.11 and before
automatically overrides the method for classes that extend the trait. However if no recompilation
of the library is performed with the updated trait (with the new defult method), no override method is generated
of the library is performed with the updated trait (with the new default method), no override method is generated
and an `AbstractMethodError` will be thrown when the default method is called.

See [this StackOverflow question](https://stackoverflow.com/questions/18366817/is-adding-a-trait-method-with-implementation-breaking-backward-compatibility)
Expand Down