From a5cad9a748819597a4b3a8cbd7881cdc6b47fe82 Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Fri, 2 Nov 2018 13:33:30 -0700 Subject: [PATCH] Fix a typo in a comment. --- lib/codegen/src/regalloc/virtregs.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/codegen/src/regalloc/virtregs.rs b/lib/codegen/src/regalloc/virtregs.rs index 5d8992a179..55fece93c1 100644 --- a/lib/codegen/src/regalloc/virtregs.rs +++ b/lib/codegen/src/regalloc/virtregs.rs @@ -280,7 +280,7 @@ impl UFEntry { /// 2. When done, call `finish_union_find()` to construct the virtual register sets based on the /// `union()` calls. /// -/// The values that were passed to `union(a, b)` mist not belong to any existing virtual registers +/// The values that were passed to `union(a, b)` must not belong to any existing virtual registers /// by the time `finish_union_find()` is called. /// /// For more information on the algorithm implemented here, see Chapter 21 "Data Structures for