diff --git a/compiler/frontend/src/jet/Library.jet b/compiler/frontend/src/jet/Library.jet index 89c169b1aeb..6d8bcdf7d01 100644 --- a/compiler/frontend/src/jet/Library.jet +++ b/compiler/frontend/src/jet/Library.jet @@ -608,8 +608,8 @@ class Short : Number, Comparable { fun inc() : Short fun dec() : Short - fun plus() : Int - fun minus() : Int + fun plus() : Short + fun minus() : Short } class Byte : Number, Comparable { @@ -671,6 +671,6 @@ class Byte : Number, Comparable { fun inc() : Byte fun dec() : Byte - fun plus() : Int - fun minus() : Int -} + fun plus() : Byte + fun minus() : Byte +} \ No newline at end of file