From ef78335594d21bdedfecb9b64a3d6b935c6de5e0 Mon Sep 17 00:00:00 2001 From: leesh-1 <105499339+leesh-1@users.noreply.github.com> Date: Fri, 7 Oct 2022 21:08:29 -0500 Subject: [PATCH] Update decorators.ipynb Corrected typo --- 00_python/decorators.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/00_python/decorators.ipynb b/00_python/decorators.ipynb index 8b0bd56..c83f831 100644 --- a/00_python/decorators.ipynb +++ b/00_python/decorators.ipynb @@ -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",