fix(erg_compiler): fix typo in abc.d.er

s/abstruct/abstract/g

Because abstruct does not exists in Python ;)

Signed-off-by: Lionel H <lionel.hubaut@dekimo.com>
This commit is contained in:
Lionel H 2024-07-08 11:07:27 +02:00
parent a1cebd46d3
commit 2d8a673fee

View file

@ -1,6 +1,6 @@
.abstructmethod: |F <: GenericCallable|(F) -> F
.abstructclassmethod: |F <: GenericCallable|(F) -> F
.abstructstaticmethod: |F <: GenericCallable|(F) -> F
.abstractmethod: |F <: GenericCallable|(F) -> F
.abstractclassmethod: |F <: GenericCallable|(F) -> F
.abstractstaticmethod: |F <: GenericCallable|(F) -> F
.ABCMeta: ClassType
.ABCMeta <: Type