From 1030d6737d540e4f98e7111009452395ceb87a84 Mon Sep 17 00:00:00 2001 From: Kobi <73299267+kobito-kun@users.noreply.github.com> Date: Fri, 26 Mar 2021 01:24:55 -0400 Subject: [PATCH] Minor Fix Just a character fix. --- languages/python.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/languages/python.md b/languages/python.md index 0adf7f2..d854ed4 100644 --- a/languages/python.md +++ b/languages/python.md @@ -74,7 +74,7 @@ | try | this block will be tried to get executed | execption handling | | execpt | is any execption/error has occured it'll be executed | execption handling | | finally | It'll be executed no matter execption occurs or not | execption handling | -| raise | thros any specific error/execption | execption handling | +| raise | throws any specific error/execption | execption handling | | assert | throws an AssertionError if condition is false | execption handling | | async | used to define asynchronous functions/co-routines | asynchronous programming | | await | used to specify a point when control is taken back | asynchronous programming |