Skip to content

Commit

Permalink
Fixes simple typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kushaldas committed Jul 21, 2016
1 parent eea1973 commit 7774546
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/operatorsexpressions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ In this example we are going to calculate the salary of a camera salesman. His b
commision = (commision_rate * numberofcamera * price)
print("Bonus = %6.2f" % bonus)
print("Commision = %6.2f" % commision)
print("Gross salary = %6.2f") % (basic_salary + bonus + commision)
print("Gross salary = %6.2f" % (basic_salary + bonus + commision))

The output

Expand Down

0 comments on commit 7774546

Please sign in to comment.