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 {...@@ -29747,7 +29747,7 @@ pub fn resolveTypeLayout(sema: *Sema, ty: Type) CompileError!void {
29747 .Fn => {29747 .Fn => {
29748 const info = ty.fnInfo();29748 const info = ty.fnInfo();
29749 if (info.is_generic) {29749 if (info.is_generic) {
29750 // Resolving of generic function types is defeerred to when29750 // Resolving of generic function types is deferred to when
29751 // the function is instantiated.29751 // the function is instantiated.
29752 return;29752 return;
29753 }29753 }
...@@ -30201,7 +30201,7 @@ pub fn resolveTypeFully(sema: *Sema, ty: Type) CompileError!void {...@@ -30201,7 +30201,7 @@ pub fn resolveTypeFully(sema: *Sema, ty: Type) CompileError!void {
30201 .Fn => {30201 .Fn => {
30202 const info = ty.fnInfo();30202 const info = ty.fnInfo();
30203 if (info.is_generic) {30203 if (info.is_generic) {
30204 // Resolving of generic function types is defeerred to when30204 // Resolving of generic function types is deferred to when
30205 // the function is instantiated.30205 // the function is instantiated.
30206 return;30206 return;
30207 }30207 }