Fixed missing argument names in file handle docs (#632)

This commit is contained in:
JackMacWindows 2020-12-28 02:02:37 -05:00 committed by GitHub
parent b8d5a89446
commit 8b17ec76a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -41,7 +41,7 @@ public EncodedWritableHandle( @Nonnull BufferedWriter writer, @Nonnull Closeable
*
* @param args The value to write.
* @throws LuaException If the file has been closed.
* @cc.param The value to write to the file.
* @cc.param value The value to write to the file.
*/
@LuaFunction
public final void write( IArguments args ) throws LuaException
@ -63,7 +63,7 @@ public final void write( IArguments args ) throws LuaException
*
* @param args The value to write.
* @throws LuaException If the file has been closed.
* @cc.param The value to write to the file.
* @cc.param value The value to write to the file.
*/
@LuaFunction
public final void writeLine( IArguments args ) throws LuaException