@@ -362,7 +362,7 @@ def get_option_string(self, *params):
362362 return None , s
363363
364364
365- class InstancableBuiltin (Builtin ):
365+ class InstanceableBuiltin (Builtin ):
366366 def __new__ (cls , * args , ** kwargs ):
367367 new_kwargs = kwargs .copy ()
368368 new_kwargs ["expression" ] = False
@@ -375,7 +375,7 @@ def __new__(cls, *args, **kwargs):
375375 try :
376376 instance .init (* args , ** kwargs )
377377 except TypeError :
378- # TypeError occurs when unpickling instance, e.g. PatterObject ,
378+ # TypeError occurs when unpickling instance, e.g. PatternObject ,
379379 # because parameter expr is not given. This should no be a
380380 # problem, as pickled objects need their init-method not
381381 # being called.
@@ -590,14 +590,14 @@ class BoxConstructError(Exception):
590590 pass
591591
592592
593- class BoxConstruct (InstancableBuiltin ):
593+ class BoxConstruct (InstanceableBuiltin ):
594594 def __new__ (cls , * leaves , ** kwargs ):
595595 instance = super ().__new__ (cls , * leaves , ** kwargs )
596596 instance ._leaves = leaves
597597 return instance
598598
599599 def evaluate (self , evaluation ):
600- # Shall here evaluate the leaves?
600+ # THINK about: Should we evaluate the leaves here ?
601601 return
602602
603603 def get_head_name (self ):
@@ -707,7 +707,7 @@ def __init__(self, name, count, expected):
707707 super ().__init__ (None , None )
708708
709709
710- class PatternObject (InstancableBuiltin , Pattern ):
710+ class PatternObject (InstanceableBuiltin , Pattern ):
711711 needs_verbatim = True
712712
713713 arg_counts : typing .List [int ] = []
0 commit comments