Skip to content
This repository was archived by the owner on Aug 25, 2024. It is now read-only.

Commit bb67660

Browse files
yashlambapdxjohnny
authored andcommitted
docs: Fixed a few typos and grammatical errors
1 parent d7c3827 commit bb67660

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ Here are some examples:
2929
- Most PRs should include a description of what is changing to the
3030
[CHANGELOG.md](CHANGELOG.md) file. Use your own judgement on what warrants
3131
inclusion, the expectation is that 95% of PRs will include an edit to the
32-
change log. Maintainers will let you know if you if you include and its not
32+
change log. Maintainers will let you know if you need to include it or its not
3333
needed.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Making you're next machine learning project a breeze to write!
6767

6868
- Features
6969
- The [new feature tutorial](docs/tutorial/FEATURE.md) will walk you through
70-
how to write a new DFFML feature to gernerate data for a dataset.
70+
how to write a new DFFML feature to generate data for a dataset.
7171
- Models
7272
- The [new model tutorial](docs/tutorial/MODEL.md) will walk you through how
7373
to wrap your favorite framework or a custom implementation in the DFFML

docs/FEATURE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,4 @@ entry_points={
5050
## Tutorial
5151

5252
The [new feature tutorial](tutorial/FEATURE.md) will walk you through how to
53-
write a new DFFML feature to gernerate data for a dataset.
53+
write a new DFFML feature to generate data for a dataset.

docs/tutorial/FEATURE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Create the Package
44

55
To create a new feature we first create a new python package. DFFML has a script
6-
to created it for you.
6+
to create it for you.
77

88
We're going to create a feature that multiplies float values by `4.2`.
99

@@ -134,7 +134,7 @@ from dffml_feature_string.feature.string_by_4_point_2 import \
134134
### Modify `evaluates` test
135135

136136
The tests start out with one testcase which should work. Modify that so that it
137-
still works. If you don't it should fail because the string being parsed can't
137+
still works. If you don't, it should fail because the string being parsed can't
138138
be parsed into a float.
139139

140140
```python

0 commit comments

Comments
 (0)