zig

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

commit c39ba682e359c14b45495abe337c29645e8e9669 (tree)
parent 6ff267dc2635177b57bda1d398374ab96ed40179
Author: Roman FroĊ‚ow <rofrol@gmail.com>
Date:   Wed, 30 Oct 2024 01:30:12 +0100

typo: will inlined -> will be inlined
Diffstat:
Mdoc/langref/builtin.CallModifier struct.zig | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/doc/langref/builtin.CallModifier struct.zig b/doc/langref/builtin.CallModifier struct.zig @@ -23,7 +23,7 @@ pub const CallModifier = enum { /// If this is not possible, a compile error is emitted instead. always_tail, - /// Guarantees that the call will inlined at the callsite. + /// Guarantees that the call will be inlined at the callsite. /// If this is not possible, a compile error is emitted instead. always_inline,