summaryrefslogtreecommitdiff
path: root/nuttx/libc/README.txt
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/libc/README.txt')
-rw-r--r--nuttx/libc/README.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/libc/README.txt b/nuttx/libc/README.txt
index 4ecc7c299..b165bd74b 100644
--- a/nuttx/libc/README.txt
+++ b/nuttx/libc/README.txt
@@ -78,7 +78,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.