about summary refs log tree commit diff
path: root/src/doc/reference.md
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2015-03-09 16:02:29 +0000
committerbors <bors@rust-lang.org>2015-03-09 16:02:29 +0000
commit777f5d959930711acc321a50c493b984b780f156 (patch)
treeffccc97fc7749ec7f386e012e1b6a98d4a1d2727 /src/doc/reference.md
parent2574009af0ff70dc233beab246db8f2d715be2cb (diff)
parent646830076a289d6040ba8e29518266d34ef1c5dd (diff)
downloadrust-777f5d959930711acc321a50c493b984b780f156.tar.gz
rust-777f5d959930711acc321a50c493b984b780f156.zip
Auto merge of #23219 - Manishearth:rollup, r=Manishearth
Diffstat (limited to 'src/doc/reference.md')
-rw-r--r--src/doc/reference.md4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/doc/reference.md b/src/doc/reference.md
index 3cb48eed891..ee5ebfc7e88 100644
--- a/src/doc/reference.md
+++ b/src/doc/reference.md
@@ -3007,10 +3007,6 @@ A type cast expression is denoted with the binary operator `as`.
 Executing an `as` expression casts the value on the left-hand side to the type
 on the right-hand side.
 
-A numeric value can be cast to any numeric type. A raw pointer value can be
-cast to or from any integral type or raw pointer type. Any other cast is
-unsupported and will fail to compile.
-
 An example of an `as` expression:
 
 ```