From 39aa8542cd152567a4e05cb9f1e62b39b71f689f Mon Sep 17 00:00:00 2001 From: Ryan Kurtz Date: Tue, 25 Mar 2025 12:08:02 -0400 Subject: [PATCH] GP-0: Fixing javadoc --- .../Generic/src/main/java/ghidra/util/StringUtilities.java | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Ghidra/Framework/Generic/src/main/java/ghidra/util/StringUtilities.java b/Ghidra/Framework/Generic/src/main/java/ghidra/util/StringUtilities.java index 01ea5638ac..514a4d15d6 100644 --- a/Ghidra/Framework/Generic/src/main/java/ghidra/util/StringUtilities.java +++ b/Ghidra/Framework/Generic/src/main/java/ghidra/util/StringUtilities.java @@ -1195,14 +1195,13 @@ public class StringUtilities { /** * Wrap the given string at whitespace to best fit within the given line width - * *

* If it is not possible to fit a word in the given width, it will be put on a line by itself, * and that line will be allowed to exceed the given width. * * @param str the string to wrap * @param width the max width of each line, unless a single word exceeds it - * @return + * @return The wrapped string */ public static String wrapToWidth(String str, int width) { return new LineWrapper(width).append(str).finish(); @@ -1210,7 +1209,7 @@ public class StringUtilities { /** * Removes any whitespace from start or end of string, then replaces any non-printable - * character (< 32) or spaces (32) with an underscore. + * character (< 32) or spaces (32) with an underscore. * @param s the string to adjust * @return a new trimmed string with underscores replacing any non-printable characters. */