aboutsummaryrefslogtreecommitdiff
path: root/docs/integers.md
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-03-05 00:22:40 -0500
committerBruce Hill <bruce@bruce-hill.com>2025-03-05 00:22:40 -0500
commitdba2d62d15d8233c189a109f97d7cda70fa7f6b7 (patch)
treee30d17414553a45f006a6a5d6f05dcd2856ee386 /docs/integers.md
parent0a3ad8ba914ab42ebbb88a3d955f71d71d581fc1 (diff)
Fix links
Diffstat (limited to 'docs/integers.md')
-rw-r--r--docs/integers.md28
1 files changed, 14 insertions, 14 deletions
diff --git a/docs/integers.md b/docs/integers.md
index e1c3a1ec..f9a76b19 100644
--- a/docs/integers.md
+++ b/docs/integers.md
@@ -122,20 +122,20 @@ Each integer type has its own version of the following functions. Functions
can be called either on the type itself: `Int.sqrt(x)` or as a method call:
`x:sqrt()`. Method call syntax is preferred.
-- [`func abs(x: Int -> Int)`](#`abs)
-- [`func choose(n: Int, k: Int -> Int)`](#`choose)
-- [`func clamped(x, low, high: Int -> Int)`](#`clamped)
-- [`func factorial(n: Int -> Text)`](#`factorial)
-- [`func format(i: Int, digits: Int = 0 -> Text)`](#`format)
-- [`func hex(i: Int, digits: Int = 0, uppercase: Bool = yes, prefix: Bool = yes -> Text)`](#`hex)
-- [`func is_prime(x: Int, reps: Int = 50 -> Bool)`](#`is_prime)
-- [`func next_prime(x: Int -> Int)`](#`next_prime)
-- [`func octal(i: Int, digits: Int = 0, prefix: Bool = yes -> Text)`](#`octal)
-- [`func onward(first: Int, step: Int = 1 -> Text)`](#`onward)
-- [`func parse(text: Text -> Int?)`](#`parse)
-- [`func prev_prime(x: Int -> Int)`](#`prev_prime)
-- [`func sqrt(x: Int -> Int)`](#`sqrt)
-- [`func to(first: Int, last: Int, step : Int? = none:Int -> func(->Int?))`](#`to)
+- [`func abs(x: Int -> Int)`](#abs)
+- [`func choose(n: Int, k: Int -> Int)`](#choose)
+- [`func clamped(x, low, high: Int -> Int)`](#clamped)
+- [`func factorial(n: Int -> Text)`](#factorial)
+- [`func format(i: Int, digits: Int = 0 -> Text)`](#format)
+- [`func hex(i: Int, digits: Int = 0, uppercase: Bool = yes, prefix: Bool = yes -> Text)`](#hex)
+- [`func is_prime(x: Int, reps: Int = 50 -> Bool)`](#is_prime)
+- [`func next_prime(x: Int -> Int)`](#next_prime)
+- [`func octal(i: Int, digits: Int = 0, prefix: Bool = yes -> Text)`](#octal)
+- [`func onward(first: Int, step: Int = 1 -> Text)`](#onward)
+- [`func parse(text: Text -> Int?)`](#parse)
+- [`func prev_prime(x: Int -> Int)`](#prev_prime)
+- [`func sqrt(x: Int -> Int)`](#sqrt)
+- [`func to(first: Int, last: Int, step : Int? = none:Int -> func(->Int?))`](#to)
### `abs`