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

docs: Fix a few typos #123

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ tl;dr: Contributors should follow the standard team development practices.
* Check for unnecessary whitespace with git diff --check before committing.
* Make sure your commit messages are in the proper format.
* If your commit fixes an open issue, reference it in the commit message (#15).
* Make sure your code comforms to [PEP8](https://www.python.org/dev/peps/pep-0008/).
* Make sure your code conforms to [PEP8](https://www.python.org/dev/peps/pep-0008/).
* Make sure you have added the necessary tests for your changes.
* Run all the tests to assure nothing else was accidentally broken.

Expand Down
2 changes: 1 addition & 1 deletion examples/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def getPhoto():


# endpoint declarations after flask_profiler.init_app() will be
# hidden to flask_profider.
# hidden to flask_profiler.
@app.route('/doSomething', methods=['GET'])
def doSomething():
return "flask-provider will not measure this."
Expand Down
2 changes: 1 addition & 1 deletion flask_profiler/storage/mongo.py
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ def get(self, measurementId):

def aggregate(self, pipeline, **kwargs):
"""Perform an aggregation and make sure that result will be everytime
CommandCursor. Will take care for pymongo version differencies
CommandCursor. Will take care for pymongo version differences
:param pipeline: {list} of aggregation pipeline stages
:return: {pymongo.command_cursor.CommandCursor}
"""
Expand Down