Skip to content
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
2 changes: 1 addition & 1 deletion 00_python/decorators.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"cell_type": "markdown",
"metadata": {},
"source": [
"We've seen Python functions and objects. Today, we'll breifly cover [decorators](https://www.geeksforgeeks.org/decorators-in-python/), which are functions that wrap functions, and come with [sytactic sugar](https://en.wikipedia.org/wiki/Syntactic_sugar) which lets you write things like\n",
"We've seen Python functions and objects. Today, we'll briefly cover [decorators](https://www.geeksforgeeks.org/decorators-in-python/), which are functions that wrap functions, and come with [sytactic sugar](https://en.wikipedia.org/wiki/Syntactic_sugar) which lets you write things like\n",
"\n",
"```python\n",
"@time_wrapper\n",
Expand Down