summaryrefslogtreecommitdiff
path: root/nuttx/syscall/README.txt
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/syscall/README.txt')
-rw-r--r--nuttx/syscall/README.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/syscall/README.txt b/nuttx/syscall/README.txt
index 11942a7b7..39c8694f7 100644
--- a/nuttx/syscall/README.txt
+++ b/nuttx/syscall/README.txt
@@ -104,7 +104,7 @@ Each type field has a format as follows:
A similar situation exists for unions. For example, the formal
parameter type union sigval -- You cannot cast a uintptr_t to
a union sigval, but you can cast to the type of one of the union
- member types when passing the actual paramter. Similarly, we
+ member types when passing the actual parameter. Similarly, we
cannot cast a union sigval to a uinptr_t either. Rather, we need
to cast a specific union member fieldname to uintptr_t.