authorgravatar for jacobly@ziglang.orgJacob Young <jacobly@ziglang.org> 2022-12-26 00:01:53-05:00
committergravatar for jacobly@ziglang.orgJacob Young <jacobly@ziglang.org> 2022-12-26 04:18:08-05:00
log8dd844d96fdc1975365e4cc8f12f0d55d5e0cef4
tree434ee04121681fbea285b297f9af2c349eb5342f
parentcf822c6ddd7e56b248ab217d38907aad38935b2f

Sema: fix typo


1 files changed, 2 insertions(+), 2 deletions(-)

src/Sema.zig+2-2
......@@ -29747,7 +29747,7 @@ pub fn resolveTypeLayout(sema: *Sema, ty: Type) CompileError!void {
2974729747 .Fn => {
2974829748 const info = ty.fnInfo();
2974929749 if (info.is_generic) {
29750 // Resolving of generic function types is defeerred to when
29750 // Resolving of generic function types is deferred to when
2975129751 // the function is instantiated.
2975229752 return;
2975329753 }
......@@ -30201,7 +30201,7 @@ pub fn resolveTypeFully(sema: *Sema, ty: Type) CompileError!void {
3020130201 .Fn => {
3020230202 const info = ty.fnInfo();
3020330203 if (info.is_generic) {
30204 // Resolving of generic function types is defeerred to when
30204 // Resolving of generic function types is deferred to when
3020530205 // the function is instantiated.
3020630206 return;
3020730207 }