Skip to content

Commit 43cbb6a

Browse files
committed
2 parents 376c59b + 25a92a9 commit 43cbb6a

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed

CONTRIBUTING.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ This project and everyone who participates in it is governed by the [Contributor
1010

1111
### You Can
1212

13+
* [Buy me a Coffee](https://www.buymeacoffee.com/8owKkSBUC) 😄
1314
* Propose changes to the cheatsheet.
1415
* Improve existing topics and examples.
1516
* Add new topics or resources.
@@ -23,18 +24,18 @@ This project and everyone who participates in it is governed by the [Contributor
2324
**Important!** Edit only the README.md and if you can, use [Notedown](https://github.com/aaren/notedown) to convert it to a Jupyter Notebook (no problem if you can't).
2425

2526
* Use `##` headers for titles.
26-
* Use `###` for the sub categories.
27+
* Use `###` for the subcategories.
2728
* Add a link to your section to the table of contents.
2829
* Make sure to include examples and keep explanations short.
29-
* At the end of your section or sub category, add a [*Return to the Top*](#python-cheatsheet) link.
30+
* At the end of your section or subcategory, add a [*Return to the Top*](#python-cheatsheet) link.
3031

3132
### What you need to Know
3233

33-
If you don't know were to start, please check this out:
34+
If you don't know where to start, please check this out:
3435

3536
* [Mastering Markdown](https://guides.github.com/features/mastering-markdown/).
3637
* [Mastering Issues](https://guides.github.com/features/issues/).
3738
* [Forking Projects](https://guides.github.com/activities/forking/).
3839
* And read the rest of the [GitHub Guides](https://guides.github.com/).
3940

40-
That is all! thank you again for taking the time to check how to contribute.
41+
That is all! thank you again for taking the time to check how to contribute.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2279,7 +2279,7 @@ Example:
22792279

22802280
```python
22812281
>>> c = {'name': 'Pooka', 'age': 5}
2282-
>>> {v, k for k, v in c.items()}
2282+
>>> {v: k for k, v in c.items()}
22832283
{'Pooka': 'name', 5: 'age'}
22842284
```
22852285

blog_files/about.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ This is a basic [cheatsheet](https://www.pythoncheatsheet.org) for Python mostly
66
77
## About the Website
88

9-
Build with the [Flask](http://flask.pocoo.org/) microframework, this website provides a simple managment system with the following features:
9+
Build with the [Flask](http://flask.pocoo.org/) microframework, this website provides a simple management system with the following features:
1010

1111
### Features
1212

@@ -18,8 +18,8 @@ Build with the [Flask](http://flask.pocoo.org/) microframework, this website pro
1818
- Custom Profiles for users.
1919
- Quick search for static pages.
2020
- Elasticsearch integration.
21-
- Users Managment (create, edit, delete).
22-
- Articles Managment (create, edit, delete).
21+
- Users Management (create, edit, delete).
22+
- Articles Management (create, edit, delete).
2323
- Licensed [MIT](https://github.com/wilfredinni/pysheetBlog/blob/master/LICENSE).
2424

2525
In the frontend is [Bulma](https://github.com/jgthms/bulma), a great and easy to use CSS framework along with some vanilla Javascript.

blog_files/pysheet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1915,7 +1915,7 @@ Example:
19151915

19161916
```python
19171917
>>> c = {'name': 'Pooka', 'age': 5}
1918-
>>> {v, k for k, v in c.items()}
1918+
>>> {v: k for k, v in c.items()}
19191919
{'Pooka': 'name', 5: 'age'}
19201920
```
19211921

0 commit comments

Comments
 (0)