summaryrefslogtreecommitdiffhomepage
path: root/neat.html.markdown
diff options
context:
space:
mode:
authorFeepingCreature <default_357-line@yahoo.de>2013-09-08 13:12:45 +0200
committerFeepingCreature <default_357-line@yahoo.de>2013-09-08 13:12:45 +0200
commitff6cf1836481bded466bdbb4eb7765ad8424872c (patch)
treeed888f80777f9f513fb5eed60a2691bcb9328082 /neat.html.markdown
parentc38f2c1debf0828176712f6b347e5a7a5d73ffc0 (diff)
Amend cast doc to account for dynamic class casts
Diffstat (limited to 'neat.html.markdown')
-rw-r--r--neat.html.markdown2
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;