From 8dd844d96fdc1975365e4cc8f12f0d55d5e0cef4 Mon Sep 17 00:00:00 2001 From: Jacob Young Date: Mon, 26 Dec 2022 00:01:53 -0500 Subject: [PATCH] Sema: fix typo --- src/Sema.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Sema.zig b/src/Sema.zig index 2b4ef94a8f..418f74b6f1 100644 --- a/src/Sema.zig +++ b/src/Sema.zig @@ -29747,7 +29747,7 @@ pub fn resolveTypeLayout(sema: *Sema, ty: Type) CompileError!void { .Fn => { const info = ty.fnInfo(); if (info.is_generic) { - // Resolving of generic function types is defeerred to when + // Resolving of generic function types is deferred to when // the function is instantiated. return; } @@ -30201,7 +30201,7 @@ pub fn resolveTypeFully(sema: *Sema, ty: Type) CompileError!void { .Fn => { const info = ty.fnInfo(); if (info.is_generic) { - // Resolving of generic function types is defeerred to when + // Resolving of generic function types is deferred to when // the function is instantiated. return; }