diff options
author | cui fliter <imcusg@gmail.com> | 2022-11-07 14:07:33 +0800 |
---|---|---|
committer | cui fliter <imcusg@gmail.com> | 2022-11-07 14:07:33 +0800 |
commit | f1d7bd95bfeb4b3fd8609027443f30ef289be5b1 (patch) | |
tree | d6973aea75493d07570345ab957e939116d08cea /doc | |
parent | 731bb185077918af8bc1e6a9e6bb538b2d3fbbd8 (diff) | |
download | lombok-f1d7bd95bfeb4b3fd8609027443f30ef289be5b1.tar.gz lombok-f1d7bd95bfeb4b3fd8609027443f30ef289be5b1.tar.bz2 lombok-f1d7bd95bfeb4b3fd8609027443f30ef289be5b1.zip |
doc: fix some typos
Signed-off-by: cui fliter <imcusg@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/PlannedExtensions.txt | 4 | ||||
-rw-r--r-- | doc/changelog.markdown | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/doc/PlannedExtensions.txt b/doc/PlannedExtensions.txt index cdcb1602..844f2e1e 100644 --- a/doc/PlannedExtensions.txt +++ b/doc/PlannedExtensions.txt @@ -46,7 +46,7 @@ call to add our agent? We may have to look into how netbeans' classloading works ## IDEA support It's not open source and I've heard that they don't use javac under the hood but some sort of ANTLR based parser. -If that is true, IDEA will need a dedicated lombok/IDEA afficionado to write and maintain an IDEA version of lombok, +If that is true, IDEA will need a dedicated lombok/IDEA aficionado to write and maintain an IDEA version of lombok, because that's far too much effort for Roel or Reinier, who don't own an IDEA copy and weren't planning to switch IDEs. Planned transformations @@ -166,7 +166,7 @@ assigning to a new variable, which defeats a lot of the purpose! ## Dodge access restrictions (call method private stuff, recompile to reflection). An annotation on a local variable declaration or field that states that any method calls to non-accessible methods -gets rewritten to reflective calls. Would require knowledge of the depedencies which lombok does not currently have. +gets rewritten to reflective calls. Would require knowledge of the dependencies which lombok does not currently have. ## @ReturnThis diff --git a/doc/changelog.markdown b/doc/changelog.markdown index 8dacf88a..dee3ba6f 100644 --- a/doc/changelog.markdown +++ b/doc/changelog.markdown @@ -19,7 +19,7 @@ Lombok Changelog * BUGFIX: Null analysis in eclipse was broken for incremental builds. [Issue #3133](https://github.com/projectlombok/lombok/issues/3133). * BUGFIX `VerifyError` would show up in the latest eclipse release when using various refactor scripts. [Issue #3134](https://github.com/projectlombok/lombok/issues/3134). * BUGFIX: The various `@Log` annotations can now be placed on inner enums and records. [Issue #2990](https://github.com/projectlombok/lombok/issues/2990). -* SECURITY: A widely reported security issue with log4j2 ([CVE-2021-44228](https://www.randori.com/blog/cve-2021-44228/)) has absolutely no effect on either lombok itself nor does usage of lombok on its own, or even the usage of lombok's `@Log4j2`, cause any issues whatsoever: You have to ship your own log4j2 dependency in your app - update that to 2.17 or otherwise mitigate this issue (see the CVE page). To avoid unneccessary warnings from dependency checkers, our dep on log4j2, which is used solely for testing, isn't shipped by us, and cannot be exploited in any way, has been updated to 2.17.1. [Issue #3063](https://github.com/projectlombok/lombok/issues/3063) +* SECURITY: A widely reported security issue with log4j2 ([CVE-2021-44228](https://www.randori.com/blog/cve-2021-44228/)) has absolutely no effect on either lombok itself nor does usage of lombok on its own, or even the usage of lombok's `@Log4j2`, cause any issues whatsoever: You have to ship your own log4j2 dependency in your app - update that to 2.17 or otherwise mitigate this issue (see the CVE page). To avoid unnecessary warnings from dependency checkers, our dep on log4j2, which is used solely for testing, isn't shipped by us, and cannot be exploited in any way, has been updated to 2.17.1. [Issue #3063](https://github.com/projectlombok/lombok/issues/3063) * IMPROBABLE BREAKING CHANGE: Lombok now understands a few more annotations that imply "this field should not ever contain a null reference". Lombok will thus copy some of these new annotations e.g. to generated getters and the like. [Pull Request #2904](https://github.com/projectlombok/lombok/pull/2904) ### v1.18.22 (October 6th, 2021) @@ -275,7 +275,7 @@ Lombok Changelog ### v1.14.6 (September 2nd, 2014) * BUGFIX: Usage of `val` would break starting with JDK8 release `1.8.0_20`. [Issue #766](https://github.com/projectlombok/lombok/issues/766) -* BUGFIX: Depending on your eclipse project setup, releases v1.14.0 through v1.14.4 could noticably slow down your eclipse. [Issue #717](https://github.com/projectlombok/lombok/issues/717). +* BUGFIX: Depending on your eclipse project setup, releases v1.14.0 through v1.14.4 could noticeably slow down your eclipse. [Issue #717](https://github.com/projectlombok/lombok/issues/717). ### v1.14.4 (July 1st, 2014) |