@@ -43,28 +43,28 @@ def as_string(self):
43
43
class IllegalCharError (Error ):
44
44
def __init__ (self , pos_start , pos_end , details ):
45
45
super ().__init__ (
46
- pos_start , pos_end , "OwO, whats this? Iwwegaw Chawacter? Oh nyo! " , details
46
+ pos_start , pos_end , "OwO, what's this? Iwwegaw Chawacter? Oh nyo! " , details
47
47
)
48
48
49
49
50
50
class ExpectedCharError (Error ):
51
51
def __init__ (self , pos_start , pos_end , details ):
52
52
super ().__init__ (
53
- pos_start , pos_end , "OwO, whats this? Expected Chawacter? Oh nyo! " , details
53
+ pos_start , pos_end , "OwO, what's this? Expected Chawacter? Oh nyo! " , details
54
54
)
55
55
56
56
57
57
class InvalidSyntaxError (Error ):
58
58
def __init__ (self , pos_start , pos_end , details = "" ):
59
59
super ().__init__ (
60
- pos_start , pos_end , "OwO, whats this? Invawid Syntax? Oh nyo! " , details
60
+ pos_start , pos_end , "OwO, what's this? Invawid Syntax? Oh nyo! " , details
61
61
)
62
62
63
63
64
64
class RTError (Error ):
65
65
def __init__ (self , pos_start , pos_end , details , context ):
66
66
super ().__init__ (
67
- pos_start , pos_end , "OwO, whats this? Ruwntime Error? Oh nyo! " , details
67
+ pos_start , pos_end , "OwO, what's this? Ruwntime Error? Oh nyo! " , details
68
68
)
69
69
self .context = context
70
70
0 commit comments