diff options
-rw-r--r-- | neat.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/neat.html.markdown b/neat.html.markdown index db64f59f..ecb255c2 100644 --- a/neat.html.markdown +++ b/neat.html.markdown @@ -83,7 +83,7 @@ void main(string[] args) { // (implicit casts) float f = float:5; float f2 = 5; // would also work - // casts that require throwing away information - + // casts that require throwing away information or complicated computation - // those must always be done explicitly // (conversion casts) int i = int:f; |