From c0506108f93aaace01a01b394eab0c539eaf2b40 Mon Sep 17 00:00:00 2001 From: Jummit Date: Sat, 15 May 2021 23:26:06 +0200 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 e563ec90b..1930afe3a 100644 --- a/src/main/java/dan200/computercraft/core/apis/handles/EncodedWritableHandle.java +++ b/src/main/java/dan200/computercraft/core/apis/handles/EncodedWritableHandle.java @@ -54,7 +54,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 { @@ -72,7 +72,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 {