Found during a docs accuracy audit.
SYNTAX.md documented a state() shorthand generator, but it was never registered — vague errors with "Generator 'state' not found". The faker shorthand plugin (src/plugins/faker.ts:253-286) registers city, country, countryCode, zipCode, and streetAddress but not state.
The doc reference has been removed. If a state shorthand is wanted, register state: wrapNoArgs(() => faker.location.state()) and re-document it.
Found during a docs accuracy audit.
SYNTAX.md documented a
state()shorthand generator, but it was never registered —vagueerrors with "Generator 'state' not found". The faker shorthand plugin (src/plugins/faker.ts:253-286) registers city, country, countryCode, zipCode, and streetAddress but not state.The doc reference has been removed. If a state shorthand is wanted, register
state: wrapNoArgs(() => faker.location.state())and re-document it.