aboutsummaryrefslogtreecommitdiffstats
path: root/docs/syscall_descriptions_syntax.md
diff options
context:
space:
mode:
authorTaras Madan <tarasmadan@google.com>2025-08-19 15:53:14 +0200
committerTaras Madan <tarasmadan@google.com>2025-08-19 14:17:01 +0000
commit0773c4252b9eda702503351c75aca73526a13b6c (patch)
tree3a9ea716de1a24261099d001a093f6291f3977c8 /docs/syscall_descriptions_syntax.md
parent7247b5c7fccc4b0e6008504269cb3537fcbdf93a (diff)
docs: fix misspellings
Gemini CLI experiments side effect.
Diffstat (limited to 'docs/syscall_descriptions_syntax.md')
-rw-r--r--docs/syscall_descriptions_syntax.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/syscall_descriptions_syntax.md b/docs/syscall_descriptions_syntax.md
index a8289ba03..33dcd3cc6 100644
--- a/docs/syscall_descriptions_syntax.md
+++ b/docs/syscall_descriptions_syntax.md
@@ -187,7 +187,7 @@ foo {
Structs can have attributes specified in square brackets after the struct.
Attributes are:
-- `packed`: the struct does not have paddings between fields and has alignment 1; this is similar to GNU C `__attribute__((packed))`; struct alignment can be overriden with `align` attribute
+- `packed`: the struct does not have paddings between fields and has alignment 1; this is similar to GNU C `__attribute__((packed))`; struct alignment can be overridden with `align` attribute
- `align[N]`: the struct has alignment N and padded up to multiple of `N`; contents of the padding are unspecified (though, frequently are zeros); similar to GNU C `__attribute__((aligned(N)))`
- `size[N]`: the struct is padded up to the specified size `N`; contents of the padding are unspecified (though, frequently are zeros)