Fixing typos for is_writeable -> is_writable (Both are aliased in source)

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@38548 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
James Moore 2001-01-03 19:17:46 +00:00
parent 031a9d0dfa
commit db281eb817

View file

@ -188,7 +188,7 @@ chmod ("/somedir/somefile", 0755); // octal; correct value of mode
Affected functions include <function>stat</function>,
<function>lstat</function>,
<function>file_exists</function>,
<function>is_writeable</function>,
<function>is_writable</function>,
<function>is_readable</function>,
<function>is_executable</function>,
<function>is_file</function>,
@ -1749,26 +1749,26 @@ if($fp){
<function>clearstatcache</function> for more details.
</para>
<para>
See also <function>is_writeable</function>.
See also <function>is_writable</function>.
</para>
</refsect1>
</refentry>
<refentry id="function.is-writeable">
<refentry id="function.is-writable">
<refnamediv>
<refname>is_writeable</refname>
<refpurpose>Tells whether the filename is writeable</refpurpose>
<refname>is_writable</refname>
<refpurpose>Tells whether the filename is writable</refpurpose>
</refnamediv>
<refsect1>
<title>Description</title>
<funcsynopsis>
<funcprototype>
<funcdef>bool <function>is_writeable</function></funcdef>
<funcdef>bool <function>is_writable</function></funcdef>
<paramdef>string <parameter>filename</parameter></paramdef>
</funcprototype>
</funcsynopsis>
<para>
Returns true if the filename exists and is writeable. The
Returns true if the filename exists and is writable. The
filename argument may be a directory name allowing you to check
if a directory is writeable.
</para>