diff --git a/public/scripts/world-info.js b/public/scripts/world-info.js
index 0df3ff95b..405ec8d6e 100644
--- a/public/scripts/world-info.js
+++ b/public/scripts/world-info.js
@@ -330,7 +330,7 @@ function registerWorldInfoSlashCommands() {
}
registerSlashCommand('getchatbook', getChatBookCallback, ['getchatlore', 'getchatwi'], '– get a name of the chat-bound lorebook or create a new one if was unbound, and pass it down the pipe', true, true);
- registerSlashCommand('findentry', findBookEntryCallback, ['findlore', 'findwi'], `(file=bookName by=field [texts]) – find a UID of the record from the specified book using the fuzzy match of a field value (default: key) and pass it down the pipe, e.g. /findentry file=chatLore by=key Shadowfang`, true, true);
+ registerSlashCommand('findentry', findBookEntryCallback, ['findlore', 'findwi'], `(file=bookName field=field [texts]) – find a UID of the record from the specified book using the fuzzy match of a field value (default: key) and pass it down the pipe, e.g. /findentry file=chatLore by=key Shadowfang`, true, true);
registerSlashCommand('getentryfield', getEntryFieldCallback, ['getlorefield', 'getwifield'], '(file=bookName field=field [UID]) – get a field value (default: content) of the record with the UID from the specified book and pass it down the pipe, e.g. /getentryfield file=chatLore field=content 123', true, true);
registerSlashCommand('createentry', createEntryCallback, ['createlore', 'createwi'], '(file=bookName key=key [content]) – create a new record in the specified book with the key and content (both are optional) and pass the UID down the pipe, e.g. /createentry file=chatLore key=Shadowfang The sword of the king', true, true);
}