From 1a1774af15e0db949a803b5a81f476752b7e2b2f Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Thu, 19 Oct 2017 08:39:35 -0700 Subject: [PATCH] Fix a typo in a comment. --- lib/frontend/src/ssa.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/frontend/src/ssa.rs b/lib/frontend/src/ssa.rs index 90090d6d0e..a359ab4b33 100644 --- a/lib/frontend/src/ssa.rs +++ b/lib/frontend/src/ssa.rs @@ -612,7 +612,7 @@ where } /// The main algorithm is naturally recursive: when there's a `use_var` in a - /// block with no correspondin local defs, it recurses and performs a + /// block with no corresponding local defs, it recurses and performs a /// `use_var` in each predecessor. To avoid risking running out of callstack /// space, we keep an explicit stack and use a small state machine rather /// than literal recursion.