From ad323e50811c5805f3e8f73f5565f4299440c114 Mon Sep 17 00:00:00 2001 From: Robby Findler Date: Sun, 28 Apr 2013 15:13:23 -0500 Subject: [PATCH] typos --- src/racket/src/resolve.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/racket/src/resolve.c b/src/racket/src/resolve.c index 0ac13be2d2..ad9c626f14 100644 --- a/src/racket/src/resolve.c +++ b/src/racket/src/resolve.c @@ -26,9 +26,9 @@ /* This file implements the bytecode "resolve" pass, which converts the optimization IR to the evaluation IR --- where the main difference between the IRs is a change in stack addresses. This - pass is also reponsible for closure conversion (in the sense of - lifting closures that are used only in application positions were - all variabes captured by the closure can be converted to arguments + pass is also responsible for closure conversion (in the sense of + lifting closures that are used only in application positions where + all variables captured by the closure can be converted to arguments at all call sites). See "eval.c" for an overview of compilation passes. */