From 475013fcb60607130b7661f601eee3391ac2bd47 Mon Sep 17 00:00:00 2001 From: Tim Chevalier Date: Fri, 1 Jun 2012 19:40:55 -0700 Subject: [PATCH] Comment only: fix typo --- src/rustc/middle/typeck/check/regionck.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rustc/middle/typeck/check/regionck.rs b/src/rustc/middle/typeck/check/regionck.rs index 27194934dbef..81977a790143 100644 --- a/src/rustc/middle/typeck/check/regionck.rs +++ b/src/rustc/middle/typeck/check/regionck.rs @@ -2,7 +2,7 @@ The region check is a final pass that runs over the AST after we have inferred the type constraints but before we have actually finalized -the types. It's purpose is to embed some final region constraints. +the types. Its purpose is to embed some final region constraints. The reason that this is not done earlier is that sometimes we don't know whether a given type will be a region pointer or not until this phase.