Skip to content

Commit b7b27d1

Browse files
authored
doc: update mock name (#27)
Now we use `indefinite`, it's now `anUpdateUserInput` instead of `aUpdateUserInput`
1 parent d28c443 commit b7b27d1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ Changes the case of the enums. Accepts `upper-case#upperCase`, `pascal-case#pasc
3434
### scalars (`{ [Scalar: string]: keyof Casual.Casual | Casual.functions }`, defaultValue: `undefined`)
3535

3636
Allows you to define mappings for your custom scalars. Allows you to map any GraphQL Scalar to a
37-
[casual](https://github.com/boo1ean/casual#embedded-generators) embedded generator (string or
38-
function key)
37+
[casual](https://github.com/boo1ean/casual#embedded-generators) embedded generator (string or
38+
function key)
3939

4040
## Example of usage
4141

@@ -108,7 +108,7 @@ export const anAvatar = (overrides?: Partial<Avatar>): Avatar => {
108108
};
109109
};
110110

111-
export const aUpdateUserInput = (overrides?: Partial<UpdateUserInput>): UpdateUserInput => {
111+
export const anUpdateUserInput = (overrides?: Partial<UpdateUserInput>): UpdateUserInput => {
112112
return {
113113
id: overrides && overrides.hasOwnProperty('id') ? overrides.id! : '1d6a9360-c92b-4660-8e5f-04155047bddc',
114114
login: overrides && overrides.hasOwnProperty('login') ? overrides.login! : 'qui',

0 commit comments

Comments
 (0)