Fixed some misnamed functions.

This commit is contained in:
Bruce Hill 2018-10-01 15:25:11 -07:00
parent 0c982d2aa2
commit 1a3137a210
2 changed files with 6 additions and 6 deletions

View File

@ -399,7 +399,7 @@ do
return List(lines(self)) return List(lines(self))
end, end,
line_1 = line, line_1 = line,
wrap_to_1 = function(self, maxlen) wrapped_to_1 = function(self, maxlen)
local _lines = { } local _lines = { }
local _list_0 = self:lines() local _list_0 = self:lines()
for _index_0 = 1, #_list_0 do for _index_0 = 1, #_list_0 do
@ -418,10 +418,10 @@ do
line_at_1 = function(self, i) line_at_1 = function(self, i)
return (line_at(self, i)) return (line_at(self, i))
end, end,
line_number_of_1 = function(self, i) line_number_at_1 = function(self, i)
return select(2, line_at(self, i)) return select(2, line_at(self, i))
end, end,
line_position_of_1 = function(self, i) line_position_at_1 = function(self, i)
return select(3, line_at(self, i)) return select(3, line_at(self, i))
end, end,
matches_1 = function(self, patt) matches_1 = function(self, patt)

View File

@ -153,7 +153,7 @@ do
bytes: => List{byte(tostring(@), 1, -1)}, bytes: => List{byte(tostring(@), 1, -1)},
lines: => List(lines(@)) lines: => List(lines(@))
line_1: line line_1: line
wrap_to_1: (maxlen)=> wrapped_to_1: (maxlen)=>
_lines = {} _lines = {}
for line in *@lines! for line in *@lines!
while #line > maxlen while #line > maxlen
@ -166,8 +166,8 @@ do
return table.concat(_lines, "\n") return table.concat(_lines, "\n")
line_at_1: (i)=> (line_at(@, i)) line_at_1: (i)=> (line_at(@, i))
line_number_of_1: (i)=> select(2, line_at(@, i)) line_number_at_1: (i)=> select(2, line_at(@, i))
line_position_of_1: (i)=> select(3, line_at(@, i)) line_position_at_1: (i)=> select(3, line_at(@, i))
matches_1: (patt)=> match(@, patt) and true or false matches_1: (patt)=> match(@, patt) and true or false
matching_1: (patt)=> (match(@, patt)) matching_1: (patt)=> (match(@, patt))
matching_groups_1: (patt)=> {match(@, patt)} matching_groups_1: (patt)=> {match(@, patt)}