summary refs log tree commit diff
path: root/src/rustdoc/doc.rs
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2012-01-18 18:35:55 -0800
committerBrian Anderson <banderson@mozilla.com>2012-01-18 19:59:24 -0800
commite39e34776e97073e3ef6f2ef4c226e73ba701fe7 (patch)
tree071cde58e472fce4b53ab4e4a3797d3513beb48f /src/rustdoc/doc.rs
parent5bbf72e11c1b0dd5cb53c5c65bf358cfd1ea5b0d (diff)
downloadrust-e39e34776e97073e3ef6f2ef4c226e73ba701fe7.tar.gz
rust-e39e34776e97073e3ef6f2ef4c226e73ba701fe7.zip
rustdoc: Assign AST ids to mod docs
Diffstat (limited to 'src/rustdoc/doc.rs')
-rw-r--r--src/rustdoc/doc.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/rustdoc/doc.rs b/src/rustdoc/doc.rs
index c601cbfe365..a479e5f3dd7 100644
--- a/src/rustdoc/doc.rs
+++ b/src/rustdoc/doc.rs
@@ -7,6 +7,7 @@ type cratedoc = ~{
 };
 
 type moddoc = ~{
+    id: ast_id,
     name: str,
     brief: option<str>,
     desc: option<str>,