rustdoc: Rename impldoc.for_ty to self_ty

This commit is contained in:
Brian Anderson 2012-01-31 16:13:29 -08:00
parent c218b65fd8
commit b7108d71a5
2 changed files with 2 additions and 2 deletions

View file

@ -103,7 +103,7 @@ type impldoc = {
brief: option<str>,
desc: option<str>,
iface_ty: option<str>,
for_ty: option<str>,
self_ty: option<str>,
methods: [methoddoc]
};

View file

@ -291,7 +291,7 @@ fn impldoc_from_impl(
brief: none,
desc: none,
iface_ty: none,
for_ty: none,
self_ty: none,
methods: vec::map(methods) {|method|
{
name: method.ident,