PropType warnings for oneOf say `null` instead of the actual expected type. For example, for this PropType: ``` javascript name: React.PropTypes.oneOf([ React.PropTypes.number, React.PropTypes.component ]) ``` I get the following warning: ``` Warning: Invalid prop `name` of value `World` supplied to `Hello`, expected one of [null,null]. ``` Example: http://jsfiddle.net/jxg/N76tr/ React v.0.11.0