diff options
| author | Kevin Atkinson <kevina@cs.utah.edu> | 2012-01-16 21:04:02 -0700 |
|---|---|---|
| committer | Kevin Atkinson <kevina@cs.utah.edu> | 2012-01-16 21:04:02 -0700 |
| commit | bdc8e8d222eebebcbc9fcfbc1df03ee8b57892f5 (patch) | |
| tree | fb5a78cf18426aba64b9a5d5348d943017fb506b /src/comp/middle/ty.rs | |
| parent | e20d90671856ac9935ea42281b669eee891a984d (diff) | |
| download | rust-bdc8e8d222eebebcbc9fcfbc1df03ee8b57892f5.tar.gz rust-bdc8e8d222eebebcbc9fcfbc1df03ee8b57892f5.zip | |
Minor cleanups to custom discriminator code.
Mostly updates to the comments and docs from Pull Request #1537.
Diffstat (limited to 'src/comp/middle/ty.rs')
| -rw-r--r-- | src/comp/middle/ty.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/comp/middle/ty.rs b/src/comp/middle/ty.rs index d44b0ee0072..478888c99c7 100644 --- a/src/comp/middle/ty.rs +++ b/src/comp/middle/ty.rs @@ -2636,8 +2636,8 @@ fn tag_variants(cx: ctxt, id: ast::def_id) -> @[variant_info] { @csearch::get_tag_variants(cx, id) } else { // FIXME: Now that the variants are run through the type checker (to - // check the disr_expr if one exists), this code should likely be - // moved there to avoid having to call eval_const_expr twice + // check the disr_expr if it exists), this code should likely be + // moved there to avoid having to call eval_const_expr twice. alt cx.items.get(id.node) { ast_map::node_item(@{node: ast::item_tag(variants, _), _}) { let disr_val = -1; |
