Fixed typos in manual

This commit is contained in:
Mattia Giambirtone 2022-12-15 15:22:51 +01:00
parent 7d08e3e83f
commit 8092f28cde
1 changed files with 1 additions and 1 deletions

View File

@ -141,7 +141,7 @@ typechecked (and then compiled), peon checks generics at declaration time and on
not only saves precious compilation time, but it also allows the compiler to generate a single
implementation for the function (although this is not a requirement) and catches type errors right
when they occur even if the function is never called, rather than having to wait for the function
to be called and specialized. Unfprtunately, this means that some of the things that are possible
to be called and specialized. Unfortunately, this means that some of the things that are possible
in, say, C++ templates are just not possible with peon generics. As an example, take this code snippet:
```