From 5976355b67a05be3096e35d6467a057f920ea799 Mon Sep 17 00:00:00 2001 From: Tshepang Lekhonkhobe Date: Wed, 1 Jul 2015 23:05:06 +0200 Subject: [PATCH] doc: there is just one trait in here Also, the info is repeated in the following paragraph --- src/libcore/any.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/libcore/any.rs b/src/libcore/any.rs index f0c77ae866d5..8d86e6fb194d 100644 --- a/src/libcore/any.rs +++ b/src/libcore/any.rs @@ -8,8 +8,6 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -//! Traits for dynamic typing of any `'static` type (through runtime reflection) -//! //! This module implements the `Any` trait, which enables dynamic typing //! of any `'static` type through runtime reflection. //!