diff options
author | FeepingCreature <default_357-line@yahoo.de> | 2013-09-08 13:12:45 +0200 |
---|---|---|
committer | FeepingCreature <default_357-line@yahoo.de> | 2013-09-08 13:12:45 +0200 |
commit | ff6cf1836481bded466bdbb4eb7765ad8424872c (patch) | |
tree | ed888f80777f9f513fb5eed60a2691bcb9328082 | |
parent | c38f2c1debf0828176712f6b347e5a7a5d73ffc0 (diff) |
Amend cast doc to account for dynamic class casts
-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; |