From c87ff5e29e3192db39a6c35662165e644cde7b9d Mon Sep 17 00:00:00 2001 From: Graydon Hoare Date: Thu, 11 Oct 2012 13:13:58 -0700 Subject: [PATCH] manual: remove box-specific language. --- doc/rust.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/doc/rust.md b/doc/rust.md index f0a469c02cc..4fc403efd5e 100644 --- a/doc/rust.md +++ b/doc/rust.md @@ -1647,11 +1647,10 @@ They are all written as prefix operators, before the expression they apply to. `-` : Negation. May only be applied to numeric types. `*` - : Dereference. When applied to a [pointer](#pointer-types) it denotes the pointed-to location. For - mutable boxes, the resulting [lvalue](#lvalues-rvalues-and-temporaries) can be assigned to. For - [enums](#enumerated-types) that have only a single variant, - containing a single parameter, the dereference operator accesses - this parameter. + : Dereference. When applied to a [pointer](#pointer-types) it denotes the pointed-to location. + For pointers to mutable locations, the resulting [lvalue](#lvalues-rvalues-and-temporaries) can be assigned to. + For [enums](#enumerated-types) that have only a single variant, containing a single parameter, + the dereference operator accesses this parameter. `!` : Logical negation. On the boolean type, this flips between `true` and `false`. On integer types, this inverts the individual bits in the