Fix a link

This commit is contained in:
Teascade 2017-08-28 00:01:03 +00:00
parent 5226f9b68b
commit 03fe2af481
1 changed files with 1 additions and 1 deletions

View File

@ -211,7 +211,7 @@ When using numbers directly (like `5`, `32` or `753`), if their type cannot be d
If you however use numbers with decimals like `5.0`, `32.2` or `73.1`, their type will default to `f32` and then `f64`.
If it is necessary to specify the type of the number (ie. for [function overloading](#function overloading)), you can simply add the type immediately after the number, e.g. `5i32`, `32f32`, or `12i16`.
If it is necessary to specify the type of the number (ie. for [function overloading](#function-overloading)), you can simply add the type immediately after the number, e.g. `5i32`, `32f32`, or `12i16`.
## Special cases
There are some special (mostly arithmetic) cases where different languages might act one way or another, so here are a list of those cases and how Omega handles them: