diff options
author | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-12-22 14:43:55 -0700 |
---|---|---|
committer | Luke T. Shumaker <lukeshu@lukeshu.com> | 2024-12-26 18:16:25 -0700 |
commit | 39818a59fdc6cd1249867b7954838222b397f4cd (patch) | |
tree | 3325c67a714b8f6752c674a9a53d93ac46c307a0 /lib9p | |
parent | 3d02c7b07286b76dfe3b00dee0918749f383eb84 (diff) |
lib9p: idl.gen: Fix a typo in a comment
Diffstat (limited to 'lib9p')
-rwxr-xr-x | lib9p/idl.gen | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib9p/idl.gen b/lib9p/idl.gen index f68d983..31bada3 100755 --- a/lib9p/idl.gen +++ b/lib9p/idl.gen @@ -658,7 +658,7 @@ LM_ALWAYS_INLINE static bool marshal_8(struct _marshal_ctx *ctx, uint64_t *val) ret += f"marshal_{member.typ.name}(ctx, &val->{member.name}[i]);\n" ret += f"\t err; }})" elif member.val: - # Just increment net_offset, don't actually marsha anything (yet). + # Just increment net_offset, don't actually marshal anything (yet). assert member.static_size ret += ( f"({{ ctx->net_offset += {member.static_size}; false; }})" |