Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Fix a typo in error message for non-text field validation
  • Loading branch information
uniquename authored Oct 23, 2025
commit 955155cca66c8873ad6d4dec1b83f7e84520785e
2 changes: 1 addition & 1 deletion src/ax/dsp/generate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ export class AxGen<IN = any, OUT extends AxGenOut = any>

if (!isText) {
throw new Error(
`addFieldProcessor: field ${fieldName} is must be a text field`
`addFieldProcessor: field ${fieldName} must be a text field`
);
}
this.streamingFieldProcessors.push({ field, process: fn });
Expand Down