From e2b5d35f57b6c43170e865d96c90293ef5cb0883 Mon Sep 17 00:00:00 2001 From: Zac Spitzer Date: Sun, 14 Jul 2024 15:58:18 +0200 Subject: [PATCH] cleanup --- docs/00.home/homepage.md | 2 +- .../03.reference/02.tags/function/_attributes/modifier.md | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/00.home/homepage.md b/docs/00.home/homepage.md index 5dd15a8d1..95451f59c 100644 --- a/docs/00.home/homepage.md +++ b/docs/00.home/homepage.md @@ -20,7 +20,7 @@ To find out more about getting involved as a developer with Lucee, checkout our Lucee 6.1 is the next major release, currently at the final Release Candidate stage. -Targeting better performance, Lucee 6.1 has full support for Java 11 thru 21. +Targeting better performance and reduced memory usuage, Lucee 6.1 now has full support for Java 11 thru 21. ## Lucee 6.0 diff --git a/docs/03.reference/02.tags/function/_attributes/modifier.md b/docs/03.reference/02.tags/function/_attributes/modifier.md index 43f4de51e..4c38d09bf 100644 --- a/docs/03.reference/02.tags/function/_attributes/modifier.md +++ b/docs/03.reference/02.tags/function/_attributes/modifier.md @@ -1,5 +1,5 @@ -used to denote a function as abstract (implementation must be defined in extended component), static (does not access instance variables in the component) or final (implementation cannot be extended). +Use modifier to denote a function as abstract, static or final. -- final -- abstract -- static +- abstract: implementation must be defined in extended component. +- final: implementation cannot be extended. +- static: does not access instance variables in the component. \ No newline at end of file