From 237d48477ab8b0e666dace3081e16b335aa00219 Mon Sep 17 00:00:00 2001 From: Sean Stangl Date: Tue, 9 Jul 2019 10:01:29 -0600 Subject: [PATCH] Fix an outdated comment referring to `FunctionLayout` instead of `Layout` --- cranelift/codegen/src/ir/dfg.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cranelift/codegen/src/ir/dfg.rs b/cranelift/codegen/src/ir/dfg.rs index d26abaa3e7..1467ab23b3 100644 --- a/cranelift/codegen/src/ir/dfg.rs +++ b/cranelift/codegen/src/ir/dfg.rs @@ -25,7 +25,7 @@ use std::collections::HashMap; /// instruction results or EBB parameters. /// /// The layout of EBBs in the function and of instructions in each EBB is recorded by the -/// `FunctionLayout` data structure which form the other half of the function representation. +/// `Layout` data structure which forms the other half of the function representation. /// #[derive(Clone)] pub struct DataFlowGraph {