fix via mdinger

This commit is contained in:
Alexis Beingessner 2015-07-14 00:26:08 -07:00
parent 04578f6611
commit dba548d363

View file

@ -109,7 +109,7 @@ struct FooRepr {
And indeed this is approximately how it would be laid out in general
(modulo the size and position of `tag`). However there are several cases where
such a representation is ineffiecient. The classic case of this is Rust's
such a representation is inefficient. The classic case of this is Rust's
"null pointer optimization". Given a pointer that is known to not be null
(e.g. `&u32`), an enum can *store* a discriminant bit *inside* the pointer
by using null as a special value. The net result is that
@ -121,4 +121,4 @@ nested enums pooling their tags into a single descriminant, as they are by
definition known to have a limited range of valid values. In principle enums can
use fairly elaborate algorithms to cache bits throughout nested types with
special constrained representations. As such it is *especially* desirable that
we leave enum layout unspecified today.
we leave enum layout unspecified today.