rustc: Word a comment more clearly in region.rs

This commit is contained in:
Patrick Walton 2012-03-12 18:56:13 -07:00
parent afa046a56b
commit ac57bb3856

View file

@ -28,10 +28,7 @@ type binding = {
}; };
type region_map = { type region_map = {
/* /* Mapping from a block/function expression to its parent. */
* Mapping from blocks and function expression to their parent block or
* function expression.
*/
parents: hashmap<ast::node_id,ast::node_id>, parents: hashmap<ast::node_id,ast::node_id>,
/* Mapping from a region type in the AST to its resolved region. */ /* Mapping from a region type in the AST to its resolved region. */
ast_type_to_region: hashmap<ast::node_id,ty::region>, ast_type_to_region: hashmap<ast::node_id,ty::region>,