Skip to content

Commit 5052660

Browse files
authored
Merge pull request #127 from lowzj/typo
Fix typo in README.md
2 parents 8d59b2f + 9017468 commit 5052660

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ $ pip install ariadne-codegen
3333

3434
## Configuration
3535

36-
`ariadne-codegen` reads configuration from `[tool.ariadne-codegen]` section in your `pyproject.toml`'. You can use other configuration file with `--config` option, eg. `ariadne-codegen --config custom_file.toml`
36+
`ariadne-codegen` reads configuration from `[tool.ariadne-codegen]` section in your `pyproject.toml`. You can use other configuration file with `--config` option, eg. `ariadne-codegen --config custom_file.toml`
3737

3838
Required settings:
3939

@@ -104,7 +104,7 @@ serialize = "function used to serialize scalar"
104104
parse = "function used to create scalar instance from serialized form"
105105
```
106106

107-
All occurences of `{graphql scalar name}` will be represented as `type`. If provided, `serialize` and `parse` will be used for serialization and deserialization.
107+
All occurrences of `{graphql scalar name}` will be represented as `type`. If provided, `serialize` and `parse` will be used for serialization and deserialization.
108108
If `type`/`serialize`/`parse` contains at least one `.` then string will be split by it's last occurrence. First part will be used as module to import from, and second part as type/method name. For example, `type = "custom_scalars.a.ScalarA"` will produce `from custom_scalars.a import ScalarA`.
109109

110110

@@ -161,7 +161,7 @@ class OperationNameField(BaseModel, {import}):
161161
...
162162
```
163163

164-
This directive can be used along with `files_to_include` option to extend funcionallity of generated classes.
164+
This directive can be used along with `files_to_include` option to extend functionality of generated classes.
165165

166166

167167
#### Example of usage of `mixin` and `files_to_include`:

0 commit comments

Comments
 (0)