@@ -1527,28 +1527,28 @@ module OpenSSL
15271527 # - bn % bn2 => aBN
15281528 # -->
15291529 #
1530- def % : (int ) -> instance
1530+ def % : (bn ) -> instance
15311531
15321532 # <!--
15331533 # rdoc-file=ext/openssl/ossl_bn.c
15341534 # - bn * bn2 => aBN
15351535 # -->
15361536 #
1537- def * : (int ) -> instance
1537+ def * : (bn ) -> instance
15381538
15391539 # <!--
15401540 # rdoc-file=ext/openssl/ossl_bn.c
15411541 # - bn ** bn2 => aBN
15421542 # -->
15431543 #
1544- def ** : (int ) -> instance
1544+ def ** : (bn ) -> instance
15451545
15461546 # <!--
15471547 # rdoc-file=ext/openssl/ossl_bn.c
15481548 # - bn + bn2 => aBN
15491549 # -->
15501550 #
1551- def + : (int ) -> instance
1551+ def + : (bn ) -> instance
15521552
15531553 # <!--
15541554 # rdoc-file=ext/openssl/ossl_bn.c
@@ -1562,7 +1562,7 @@ module OpenSSL
15621562 # - bn - bn2 => aBN
15631563 # -->
15641564 #
1565- def - : (int ) -> instance
1565+ def - : (bn ) -> instance
15661566
15671567 # <!--
15681568 # rdoc-file=ext/openssl/ossl_bn.c
@@ -1577,7 +1577,7 @@ module OpenSSL
15771577 # -->
15781578 # Division of OpenSSL::BN instances
15791579 #
1580- def / : (int ) -> [ instance , instance ]
1580+ def / : (bn ) -> [ instance , instance ]
15811581
15821582 # <!--
15831583 # rdoc-file=ext/openssl/ossl_bn.c
@@ -1635,7 +1635,7 @@ module OpenSSL
16351635 # - bn.cmp(bn2) => integer
16361636 # -->
16371637 #
1638- def cmp : (Integer ) -> Integer
1638+ def cmp : (bn ) -> Integer
16391639
16401640 # <!--
16411641 # rdoc-file=ext/openssl/ossl_bn.c
@@ -1650,7 +1650,7 @@ module OpenSSL
16501650 # - copy(p1)
16511651 # -->
16521652 #
1653- def copy : (int ) -> instance
1653+ def copy : (bn ) -> instance
16541654
16551655 # <!--
16561656 # rdoc-file=ext/openssl/ossl_bn.c
@@ -1666,7 +1666,7 @@ module OpenSSL
16661666 # - bn.gcd(bn2) => aBN
16671667 # -->
16681668 #
1669- def gcd : (int ) -> instance
1669+ def gcd : (bn ) -> instance
16701670
16711671 # <!--
16721672 # rdoc-file=ext/openssl/ossl_bn.c
@@ -1692,42 +1692,42 @@ module OpenSSL
16921692 # - bn.mod_add(bn1, bn2) -> aBN
16931693 # -->
16941694 #
1695- def mod_add : (int, int ) -> instance
1695+ def mod_add : (bn, bn ) -> instance
16961696
16971697 # <!--
16981698 # rdoc-file=ext/openssl/ossl_bn.c
16991699 # - bn.mod_exp(bn1, bn2) -> aBN
17001700 # -->
17011701 #
1702- def mod_exp : (int, int ) -> instance
1702+ def mod_exp : (bn, bn ) -> instance
17031703
17041704 # <!--
17051705 # rdoc-file=ext/openssl/ossl_bn.c
17061706 # - bn.mod_inverse(bn2) => aBN
17071707 # -->
17081708 #
1709- def mod_inverse : (int ) -> instance
1709+ def mod_inverse : (bn ) -> instance
17101710
17111711 # <!--
17121712 # rdoc-file=ext/openssl/ossl_bn.c
17131713 # - bn.mod_mul(bn1, bn2) -> aBN
17141714 # -->
17151715 #
1716- def mod_mul : (int, int ) -> instance
1716+ def mod_mul : (bn, bn ) -> instance
17171717
17181718 # <!--
17191719 # rdoc-file=ext/openssl/ossl_bn.c
17201720 # - bn.mod_sqr(bn2) => aBN
17211721 # -->
17221722 #
1723- def mod_sqr : (int ) -> instance
1723+ def mod_sqr : (bn ) -> instance
17241724
17251725 # <!--
17261726 # rdoc-file=ext/openssl/ossl_bn.c
17271727 # - bn.mod_sub(bn1, bn2) -> aBN
17281728 # -->
17291729 #
1730- def mod_sub : (int, int ) -> instance
1730+ def mod_sub : (bn, bn ) -> instance
17311731
17321732 # <!--
17331733 # rdoc-file=ext/openssl/ossl_bn.c
@@ -1868,7 +1868,7 @@ module OpenSSL
18681868 # - bn.ucmp(bn2) => integer
18691869 # -->
18701870 #
1871- def ucmp : (int bn2) -> ::Integer
1871+ def ucmp : (bn bn2) -> ::Integer
18721872
18731873 # <!--
18741874 # rdoc-file=ext/openssl/ossl_bn.c
0 commit comments