From cb8922017df6c4030bd81790eff3679de65039f4 Mon Sep 17 00:00:00 2001
From: Zachary Lebold
Date: Mon, 7 Mar 2016 02:05:04 -0500
Subject: [PATCH] Update write.html
Change "nbytes" to "buflen" to be consistent with read and since "buflen" is used in the documentation here.
---
man/syscall/write.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/man/syscall/write.html b/man/syscall/write.html
index aaf3736..66b469c 100644
--- a/man/syscall/write.html
+++ b/man/syscall/write.html
@@ -51,7 +51,7 @@ Standard C Library (libc, -lc)
ssize_t
write(int fd, const void *buf,
-size_t nbytes);
+size_t buflen);
Description