Skip to content

Commit

Permalink
Fix typos (#1995)
Browse files Browse the repository at this point in the history
* fix typo

* fix typo

* fix typo

* fix typo

* fix typo
  • Loading branch information
omahs authored Feb 16, 2024
1 parent 1dc888b commit c3cd386
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Making Changes
the new branch with ``git checkout fix/master/my_contribution``.
Please avoid working directly on the ``master`` branch.
- Make commits of logical units.
- Follow our `coding style`_. Your can run ``make lint`` to format your code.
- Follow our `coding style`_. You can run ``make lint`` to format your code.
- Check for unnecessary whitespace with ``git diff --check`` before
committing.
- Make sure you have added the necessary tests for your changes.
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ Seeding the Generator
---------------------

When using Faker for unit testing, you will often want to generate the same
data set. For convenience, the generator also provide a ``seed()`` method,
data set. For convenience, the generator also provides a ``seed()`` method,
which seeds the shared random number generator. A Seed produces the same result
when the same methods with the same version of faker are called.

Expand Down
2 changes: 1 addition & 1 deletion docs/coding_style.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ For each data set, please provide a comment with reference to the source
and/or origin of the data.

We only accept new data if it's coming from statistical sources, such as census or government institutions.
This include names and their distribution.
This includes names and their distribution.


Name Lists
Expand Down
2 changes: 1 addition & 1 deletion docs/communityproviders.rst
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Here's a list of Providers written by the community:

If you want to add your own provider to this list, please submit a Pull Request to our `repo`_.

In order to be included, your provider must satisfy these requirement:
In order to be included, your provider must satisfy these requirements:

* it must have tests.
* it must be published on PyPI.
Expand Down
2 changes: 1 addition & 1 deletion docs/writing-docs.rst
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ specify ``:sample seed=12345: a=2``, the sample usage section generated will loo
You can mix and match ``SIZE``, ``SEED``, and ``KWARGS``, and if ``KWARGS`` is becoming too long to
fit a single line, you can break ``KWARGS`` into multiple lines in the same way you can break keyword
arguments across multiples lines in actual Python code. For example, let us say the docstring contains
arguments across multiple lines in actual Python code. For example, let us say the docstring contains
this:

.. code-block:: text
Expand Down

0 comments on commit c3cd386

Please sign in to comment.