Update close.html

Fix references to file descriptor as file handle.
This commit is contained in:
Zachary Lebold 2016-03-07 02:22:11 -05:00
parent a92f77bc80
commit ac3833b17d

View File

@ -55,8 +55,8 @@ Standard C Library (libc, -lc)
<h3>Description</h3> <h3>Description</h3>
<p> <p>
The file handle <em>fd</em> is closed. The same file handle may then The file handle identified by file descriptor <em>fd</em> is closed.
be returned again from <A HREF=open.html>open</A>, The same file handle may then be returned again from <A HREF=open.html>open</A>,
<A HREF=dup2.html>dup2</A>, <A HREF=pipe.html>pipe</A>, or similar <A HREF=dup2.html>dup2</A>, <A HREF=pipe.html>pipe</A>, or similar
calls. calls.
</p> </p>
@ -87,7 +87,7 @@ mentioned here.
<table width=90%> <table width=90%>
<tr><td width=5% rowspan=10>&nbsp;</td> <tr><td width=5% rowspan=10>&nbsp;</td>
<td width=10%>EBADF</td> <td width=10%>EBADF</td>
<td><em>fd</em> is not a valid file handle.</td></tr> <td><em>fd</em> is not a valid file descriptor.</td></tr>
<tr><td>EIO</td> <td>A hard I/O error occurred.</td></tr> <tr><td>EIO</td> <td>A hard I/O error occurred.</td></tr>
</table> </table>
</p> </p>