diff options
author | David Thompson <dthompson2@worcester.edu> | 2024-02-26 08:35:43 -0500 |
---|---|---|
committer | David Thompson <dthompson2@worcester.edu> | 2024-02-26 08:35:43 -0500 |
commit | 0a484f180ca13f9de9e4a2ad8119bdcc2bb22ce9 (patch) | |
tree | 2634433c36351bcaf19a2c842c682be7223e5c50 /posts | |
parent | 414696f9962097eeade51f94314cfd29e365e628 (diff) |
Fix typo.
Diffstat (limited to 'posts')
-rw-r--r-- | posts/2024-02-25-optimizing-guile.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/posts/2024-02-25-optimizing-guile.md b/posts/2024-02-25-optimizing-guile.md index f250e6f..641fe8d 100644 --- a/posts/2024-02-25-optimizing-guile.md +++ b/posts/2024-02-25-optimizing-guile.md @@ -60,8 +60,8 @@ are polymorphic; `+` adds any two numbers together and there are many types of numbers. Compiled as-is, it means that multiple dispatch on the operands needs -to happen at runtime to determine that which specialized “add $type-a -and $type-b” routine needs to be called. +to happen at runtime to determine which specialized “add $type-a and +$type-b” routine needs to be called. The R6RS specification introduced monomorphic procedures for fixnums and floats such as `fx+` and `fl+`. These procedures remove the |