Doc cleanup

This commit is contained in:
Steven Fackler 2015-09-26 14:24:44 -07:00
parent 178744a97e
commit 7e397a86c7

View File

@ -138,7 +138,7 @@ macro_rules! make_postgres_type {
}
}
/// The kind of this type.
/// Returns the kind of this type.
pub fn kind(&self) -> &Kind {
match *self {
$(
@ -151,7 +151,7 @@ macro_rules! make_postgres_type {
}
}
/// The schema of this type.
/// Returns the schema of this type.
pub fn schema(&self) -> &str {
match *self {
Type::Other(ref u) => u.schema(),