Fix a typo in a comment.

This commit is contained in:
Dan Gohman
2018-11-02 13:33:30 -07:00
parent d4f8eb7453
commit a5cad9a748

View File

@@ -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