https://gcc.gnu.org/g:0ca643e92da7a1cfeed69f524b7057ff6c94e216
commit r17-1204-g0ca643e92da7a1cfeed69f524b7057ff6c94e216 Author: Eric Botcazou <[email protected]> Date: Mon Apr 27 00:21:56 2026 +0200 ada: Minor comment fixes gcc/ada/ChangeLog: * krunch.ads: Fix a few typos in the description. Diff: --- gcc/ada/krunch.ads | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gcc/ada/krunch.ads b/gcc/ada/krunch.ads index a38245d2d586..8b583a050627 100644 --- a/gcc/ada/krunch.ads +++ b/gcc/ada/krunch.ads @@ -23,13 +23,13 @@ -- -- ------------------------------------------------------------------------------ --- This procedure implements file name crunching +-- This procedure implements file name crunching: -- First, the name is divided into segments separated by minus signs and -- underscores, then all minus signs and underscores are eliminated. If -- this leaves the name short enough, we are done. --- If not, then the longest segment is located (left-most if there are +-- If not, then the longest segment is located (leftmost if there are -- two of equal length), and shortened by dropping its last character. -- This is repeated until the name is short enough. @@ -50,7 +50,7 @@ -- ou st wi fix 9 -- ou st wi fi 8 --- Final file name: OUSTWIFX.ADB +-- Final file name: OUSTWIFI.ADB -- A special rule applies for children of System, Ada, Gnat, and Interfaces. -- In these cases, the following special prefix replacements occur: @@ -81,7 +81,7 @@ -- a- st wi fix 9 -- a- st wi fi 8 --- Final file name: A-STWIFX.ADB +-- Final file name: A-STWIFI.ADB -- Since children of units named A, G, I or S might conflict with the names -- of predefined units, the naming rule in that case is that the first hyphen
