Skip to content

Commit 898a91d

Browse files
committed
better parameter name
1 parent ef07c65 commit 898a91d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

core/src/processing/data/StringDict.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -258,12 +258,12 @@ public String get(String key, String alternate) {
258258
* @webref stringdict:method
259259
* @brief Create a new key/value pair or change the value of one
260260
*/
261-
public void set(String key, String amount) {
261+
public void set(String key, String value) {
262262
int index = index(key);
263263
if (index == -1) {
264-
create(key, amount);
264+
create(key, value);
265265
} else {
266-
values[index] = amount;
266+
values[index] = value;
267267
}
268268
}
269269

0 commit comments

Comments
 (0)