zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 6f8c597fff01623668912255c3e37d3a4cb00a98 (tree)
parent 2bffd810157a8e7c0b2500a13921dd8c45694b8a
Author: David Rubin <daviru007@icloud.com>
Date:   Wed, 22 Nov 2023 22:56:03 -0800

fix spelling

Diffstat:
Msrc/Sema.zig | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/Sema.zig b/src/Sema.zig @@ -21071,7 +21071,7 @@ fn zirReify( } const param_type_val = opt_param_type_val.optionalValue(mod) orelse - return sema.fail(block, src, "Type.Fn.Param.arg_type must be non-null for @Type", .{}); + return sema.fail(block, src, "Type.Fn.Param.type must be non-null for @Type", .{}); param_type.* = param_type_val.toIntern(); if (param_is_noalias_val.toBool()) {