diff options
author | Roel Spilker <r.spilker@gmail.com> | 2020-01-30 21:59:56 +0100 |
---|---|---|
committer | Roel Spilker <r.spilker@gmail.com> | 2020-01-30 21:59:56 +0100 |
commit | 439d99f546db5ab42c17dafe4a9eeaabcb31d95c (patch) | |
tree | 717d559677ac81869635887634a42efb65ea6d8c | |
parent | e478c082ffb360d2c7fa62ca267ec9ed4bb739e3 (diff) | |
download | lombok-439d99f546db5ab42c17dafe4a9eeaabcb31d95c.tar.gz lombok-439d99f546db5ab42c17dafe4a9eeaabcb31d95c.tar.bz2 lombok-439d99f546db5ab42c17dafe4a9eeaabcb31d95c.zip |
fix typo in changelog
-rw-r--r-- | doc/changelog.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/changelog.markdown b/doc/changelog.markdown index 0407f1e3..90cad054 100644 --- a/doc/changelog.markdown +++ b/doc/changelog.markdown @@ -12,7 +12,7 @@ Lombok Changelog * BUGFIX: Some of the code generated by `@Builder` did not include `this.` prefixes when accessing fields. While semantically it didn't matter, if you use the 'add this prefix for field accesses' save action in eclipse, the save action would break. [Issue #2327](https://github.com/rzwitserloot/lombok/issues/2327) * BUGFIX: When lombok copies javadoc from fields to relevant methods, it should generate an appropriate `@return this` line if lombok copies the javadoc to a generated setter that is chainable (returns itself). It didn't do that when generating the 'setters' in a `@Builder`. Lombok also didn't generate an appropriate `@return` item for `@With` methods. The javadoc has also been updated slightly (the `this` reference in the javadoc is now rendered in a code tag).[Issue #2323](https://github.com/rzwitserloot/lombok/issues/2323) * IMPROBABLE BREAKING CHANGE: Lombok now generates qualified types (so, `Outer.Inner` instead of just `Inner`) in most type signatures that it generates; this should avoid exotic scenarios where the types lombok puts in signatures end up referring to unintended other types, which can occur if your class implements an interface that itself defines a type with the same name as one defined in your source file. I told you it was exotic. Thanks to Hunter Anderson for doing some preliminary work on this change. [Issue #2268](https://github.com/rzwitserloot/lombok/issues/2268) -* IMPROBABLE BREAKING CHANGE: Running `java -jar lombok.jar config -v <files>` no longer shows which files do not mentions the specific. Use `--non-mentioned` or `-n` to show them anyway. +* IMPROBABLE BREAKING CHANGE: Running `java -jar lombok.jar config -v <files>` no longer shows which files do not mention the specified keys. Use `--non-mentioned` or `-n` to show them anyway. ### v1.18.10 (September 10th, 2019) |