From 080d17f4f595de836c0222d3a2695325defce93a Mon Sep 17 00:00:00 2001 From: Serentty Date: Sun, 19 Apr 2020 04:55:07 -0400 Subject: [PATCH] Fix spelling error in comment (#974) --- src/base.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/base.rs b/src/base.rs index 16394fd50cf..144199a5b4f 100644 --- a/src/base.rs +++ b/src/base.rs @@ -29,7 +29,7 @@ pub(crate) fn trans_fn<'clif, 'tcx, B: Backend + 'static>( let mut func_ctx = FunctionBuilderContext::new(); let mut bcx = FunctionBuilder::new(&mut context.func, &mut func_ctx); - // Predefine block's + // Predefine blocks let start_block = bcx.create_block(); let block_map: IndexVec = (0..mir.basic_blocks().len()).map(|_| bcx.create_block()).collect();