Fix function name

This commit is contained in:
José Luis Lafuente 2017-06-07 17:31:05 +02:00
parent 25e1aa43b8
commit 2ac670f293
No known key found for this signature in database
GPG Key ID: 8A3455EBE455489A
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
" Author: w0rp <devw0rp@gmail.com>
" Description: Generic functions for fixing files with.
function! ale#fix#generic#RemoveTrailingBlankLines(buffer, lines) abort
function! ale#fixers#generic#RemoveTrailingBlankLines(buffer, lines) abort
let l:end_index = len(a:lines) - 1
while l:end_index > 0 && empty(a:lines[l:end_index])