Fix Type in README

This commit is contained in:
Andreas Stadelmeier 2022-07-23 09:36:37 +02:00
parent 0e0c096d0f
commit abe4f78490

View File

@ -28,7 +28,7 @@ class Overloading extends Object{
class TestOverloading extends Object{
test(a){
return new Test().m(this,a);
return new Overloading().m(this,a);
}
}
```