Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed the word 'the' #27

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/source/tutorial/tutorial_2.rst
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ Create and add below code to 'sample_erp/management/commands/generate_data.py'
self.stdout.write(f'{Expenses_needed} Expense(s) created')

# generating sales
# we will generate 10 records per day for teh whole current year
# we will generate 10 records per day for the whole current year
sdate = datetime.datetime(datetime.date.today().year, 1, 1)
edate = datetime.datetime(datetime.date.today().year, 12, 31)

Expand Down Expand Up @@ -236,7 +236,7 @@ Adding Charts
~~~~~~~~~~~~~~

To add charts to a report, we'd need to add to ``chart_settings`` .
Here is an example we will add two charts to teh first report we created `ClientTotalBalance`
Here is an example we will add two charts to the first report we created `ClientTotalBalance`

.. code-block:: python

Expand Down