Skip to content

Commit 13bf97f

Browse files
committed
Fix Javadocs
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
1 parent d09c4f4 commit 13bf97f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/org/scijava/util/Prefs.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ public static void remove(final Preferences preferences, final String key) {
223223
service().remove(preferences.absolutePath(), key);
224224
}
225225

226-
/** Puts a list into the preferences. */
226+
/** Puts a map into the preferences. */
227227
public static void putMap(final Map<String, String> map, final String key) {
228228
service().putMap(map, key);
229229
}
@@ -234,7 +234,7 @@ public static void putMap(final Preferences preferences,
234234
service().putMap(preferences.absolutePath(), map, key);
235235
}
236236

237-
/** Puts a list into the preferences. */
237+
/** Puts a map into the preferences. */
238238
public static void putMap(final Preferences preferences,
239239
final Map<String, String> map)
240240
{

0 commit comments

Comments
 (0)