From 111b6835fae2bc678e50a6b3581009a0c8be1219 Mon Sep 17 00:00:00 2001 From: Nikolay Kim Date: Thu, 24 May 2018 11:06:15 -0700 Subject: [PATCH] fix comment --- src/header/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/header/mod.rs b/src/header/mod.rs index 7d791c7b8..6b98d324a 100644 --- a/src/header/mod.rs +++ b/src/header/mod.rs @@ -40,7 +40,7 @@ pub trait IntoHeaderValue: Sized { /// The type returned in the event of a conversion error. type Error: Into; - /// Cast from PyObject to a concrete Python object type. + /// Try to convert value to a Header value. fn try_into(self) -> Result; }