From 459a75a8e6365dde0168143be7b6779227e4f72e Mon Sep 17 00:00:00 2001 From: Jade Abraham Date: Thu, 20 Jul 2023 14:50:57 -0700 Subject: [PATCH] fix unstable message Signed-off-by: Jade Abraham --- modules/standard/BigInteger.chpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/standard/BigInteger.chpl b/modules/standard/BigInteger.chpl index 26511ab923cc..97d9ccacf178 100644 --- a/modules/standard/BigInteger.chpl +++ b/modules/standard/BigInteger.chpl @@ -2806,7 +2806,7 @@ module BigInteger { :arg n: which Fibonacci number to compute for ``result``. :type n: ``integral`` */ - @unstable("fib2 is unstable and may move in the future") + @unstable("fib is unstable and may move in the future") proc fib(ref result: bigint, n: integral) { const n_ = n.safeCast(c_ulong);