summaryrefslogtreecommitdiff
path: root/nuttx/fs/fs_read.c
diff options
context:
space:
mode:
Diffstat (limited to 'nuttx/fs/fs_read.c')
-rw-r--r--nuttx/fs/fs_read.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nuttx/fs/fs_read.c b/nuttx/fs/fs_read.c
index 4b1a2ce77..1cd291936 100644
--- a/nuttx/fs/fs_read.c
+++ b/nuttx/fs/fs_read.c
@@ -89,7 +89,7 @@ int read(int fd, void *buf, unsigned int nbytes)
{
/* Yes, then let it perform the read. NOTE that for the case
* of the mountpoint, we depend on the read methods bing
- * identical in signal and position in the operations vtable.
+ * identical in signature and position in the operations vtable.
*/
ret = (int)inode->u.i_ops->read(this_file, (char*)buf, (size_t)nbytes);