Fix a deprecation warning

This commit is contained in:
Alex Crichton 2015-02-02 22:29:51 -08:00
parent 0a6a1cabde
commit c6b2aea11e

View file

@ -25,7 +25,7 @@
//! capabilities:
//!
//! * `String` => `toml::Value` - via `Parser`
//! * `toml::Value` => `String` - via `Show`
//! * `toml::Value` => `String` - via `Display`
//! * `toml::Value` => rust object - via `Decoder`
//! * rust object => `toml::Value` - via `Encoder`
//!
@ -62,7 +62,7 @@ mod show;
mod serialization;
/// Representation of a TOML value.
#[derive(PartialEq, Clone, Show)]
#[derive(PartialEq, Clone, Debug)]
#[allow(missing_docs)]
pub enum Value {
String(string::String),