From 8b17ec76a8e94251803e6f4ba4e65970c6a70b7f Mon Sep 17 00:00:00 2001 From: JackMacWindows Date: Mon, 28 Dec 2020 02:02:37 -0500 Subject: [PATCH] Fixed missing argument names in file handle docs (#632) --- .../core/apis/handles/EncodedWritableHandle.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/dan200/computercraft/core/apis/handles/EncodedWritableHandle.java b/src/main/java/dan200/computercraft/core/apis/handles/EncodedWritableHandle.java index 4d548ce03..6aaadcee2 100644 --- a/src/main/java/dan200/computercraft/core/apis/handles/EncodedWritableHandle.java +++ b/src/main/java/dan200/computercraft/core/apis/handles/EncodedWritableHandle.java @@ -41,7 +41,7 @@ public class EncodedWritableHandle extends HandleGeneric * * @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 class EncodedWritableHandle extends HandleGeneric * * @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