From faf33ab77c555a383a38496433ffa84f7eb57418 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oscar=20Bystr=C3=B6m=20Ericsson?= Date: Sun, 10 Dec 2023 12:49:46 +0100 Subject: [PATCH] Cleanup (#119). - Fixed a broken link. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7a93f3ef..7fea4b1e 100644 --- a/README.md +++ b/README.md @@ -124,7 +124,7 @@ Int256(5) % Int(5), UInt256(5) % UInt(5) ### Models - [NBKFibonacciXL](Sources/NBKFlexibleWidthKit/Models/NBKFibonacciXL.swift) -- [UIntXL](Sources/NBKFlexibleWidthKit/Models/NBKFlexibleWidth.swift) +- [UIntXL](Sources/NBKFlexibleWidthKit/NBKFlexibleWidth.swift) ### Fibonacci @@ -140,7 +140,7 @@ NBKFibonacciXL(5) // (index: 5, element: 5, next: 8) It uses a fast double-and-add algorithm: ```swift -NBKFibonacciXL(10_000_000) // 2.3s on M1 MacBook Pro +NBKFibonacciXL(10_000_000) // 2.3s on MacBook Pro, 13-inch, M1, 2020 ``` But you can also step through it manually: