@@ -329,37 +329,37 @@ debug.upvaluejoin =
329329' Hace que el `n1`-ésimo valor anterior de la clausura de Lua `f1` se refiera a el `n2`-ésimo valor anterior de la clausura de Lua `f2`.'
330330
331331infowhat .n =
332- ' `name` and `namewhat`'
332+ ' `name` y `namewhat`'
333333infowhat .S =
334- ' `source`, `short_src`, `linedefined`, `lastlinedefined`, and `what`'
334+ ' `source`, `short_src`, `linedefined`, `lastlinedefined`, y `what`'
335335infowhat .l =
336336' `currentline`'
337337infowhat .t =
338338' `istailcall`'
339339infowhat .u [' <5.1' ] =
340340' `nups`'
341341infowhat .u [' >5.2' ] =
342- ' `nups`, `nparams`, and `isvararg`'
342+ ' `nups`, `nparams`, y `isvararg`'
343343infowhat .f =
344344' `func`'
345345infowhat .r =
346- ' `ftransfer` and `ntransfer`'
346+ ' `ftransfer` y `ntransfer`'
347347infowhat .L =
348348' `activelines`'
349349
350350hookmask .c =
351- ' Calls hook when Lua calls a function .'
351+ ' Llama al hook cuando se llama a una función desde Lua .'
352352hookmask .r =
353- ' Calls hook when Lua returns from a function .'
353+ ' Llama al hook cuand se retorna de una función desde Lua .'
354354hookmask .l =
355- ' Calls hook when Lua enters a new line of code .'
355+ ' Llama al hook cuand se entra a una nueva línea de código desde Lua .'
356356
357357file =
358358' '
359359file [' :close' ] =
360- ' Close `file`.'
360+ ' Cierra el archivo `file`.'
361361file [' :flush' ] =
362- ' Saves any written data to `file`.'
362+ ' Guarda la data escrita al archivo `file`.'
363363file [' :lines' ] =
364364[[
365365------
@@ -370,29 +370,30 @@ end
370370```
371371]]
372372file [' :read' ] =
373- ' Reads the `file`, according to the given formats, which specify what to read .'
373+ ' Lee el archivo `file`, de acuerdo a los formatos provistos, los cuales especifican qué leer .'
374374file [' :seek' ] =
375- ' Sets and gets the file position, measured from the beginning of the file .'
375+ ' Fija y obtiene la posición del archivo, a contar del principio del archivo .'
376376file [' :setvbuf' ] =
377- ' Sets the buffering mode for an output file .'
377+ ' Fija el modo de buffer para un archivo de salida .'
378378file [' :write' ] =
379- ' Writes the value of each of its arguments to `file`.'
379+ ' Escribe el valor de cada uno de sus argumentos al archivo `file`.'
380380
381381readmode .n =
382- ' Reads a numeral and returns it as number .'
382+ ' Lee un numeral y lo devuelve como un número .'
383383readmode .a =
384- ' Reads the whole file .'
384+ ' Lee todo el archivo .'
385385readmode .l =
386- ' Reads the next line skipping the end of line .'
386+ ' Lee la siguiente línea, saltándose el fin-de-línea .'
387387readmode .L =
388- ' Reads the next line keeping the end of line .'
388+ ' Lee la siguiente línea, manteniendo el fin-de-línea .'
389389
390390seekwhence .set =
391- ' Base is beginning of the file .'
391+ ' Sitúa la posición base está al inicio del archivo .'
392392seekwhence .cur =
393- ' Base is current position.'
393+ ' Sitúa la posición base en la actual.'
394+
394395seekwhence [' .end' ] =
395- ' Base is end of file .'
396+ ' Sitúa la posición base al final del archivo .'
396397
397398vbuf .no =
398399' Output operation appears immediately.'
0 commit comments