From 808ab458c2d8b55c40bee031b84efb77871e865d Mon Sep 17 00:00:00 2001 From: Sam Kosh Date: Fri, 17 Jul 2026 15:34:47 +0300 Subject: [PATCH] docs: fix dead Clean ABAP instance constructor link --- clean-abap/CleanABAP.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clean-abap/CleanABAP.md b/clean-abap/CleanABAP.md index d65b3aa2..02e74cbe 100644 --- a/clean-abap/CleanABAP.md +++ b/clean-abap/CleanABAP.md @@ -2020,7 +2020,7 @@ CLASS /clean/some_api DEFINITION PUBLIC FINAL CREATE PRIVATE. We agree that this contradicts itself. However, according to the article -[_Instance Constructor_ of the ABAP Help](https://help.sap.com/doc/abapdocu_latest_index_htm/latest/en-US/abeninstance_constructor_guidl.htm), +[_Instance Constructor_ of the ABAP Help](https://help.sap.com/doc/abapdocu_816_index_htm/8.16/en-US/ABENINSTANCE_CONSTRUCTOR_GUIDL.html), specifying the `CONSTRUCTOR` in the `PUBLIC SECTION` is required to guarantee correct compilation and syntax validation. This applies only to global classes.