From 538622bc5c08c43b516957b1cbdb7bc4a5168b77 Mon Sep 17 00:00:00 2001 From: Philzen Date: Thu, 4 Jan 2024 12:15:25 +0100 Subject: [PATCH] Amend description to reflect correct named user result with trailing slash --- src/main/java/org/apache/commons/io/FilenameUtils.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/org/apache/commons/io/FilenameUtils.java b/src/main/java/org/apache/commons/io/FilenameUtils.java index 049c3a7108a..52840922a00 100644 --- a/src/main/java/org/apache/commons/io/FilenameUtils.java +++ b/src/main/java/org/apache/commons/io/FilenameUtils.java @@ -669,7 +669,7 @@ public static String getFullPath(final String fileName) { * ~ --> ~ * ~/ --> ~ * ~user --> ~user - * ~user/ --> ~user + * ~user/ --> ~user/ * *

* The output will be the same irrespective of the machine that the code is running on.