From 1427a090df5ddf375ce1e7ea327a75a720ecbb7b Mon Sep 17 00:00:00 2001 From: Adam Weis Date: Fri, 15 Mar 2019 16:15:20 -0700 Subject: [PATCH] ruby: fix a typo in a comment --- autoload/ale/ruby.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/ale/ruby.vim b/autoload/ale/ruby.vim index 69d7a0c0..15e835c9 100644 --- a/autoload/ale/ruby.vim +++ b/autoload/ale/ruby.vim @@ -1,7 +1,7 @@ " Author: Eddie Lebow https://github.com/elebow " Description: Functions for integrating with Ruby tools -" Find the nearest dir contining "app", "db", and "config", and assume it is +" Find the nearest dir containing "app", "db", and "config", and assume it is " the root of a Rails app. function! ale#ruby#FindRailsRoot(buffer) abort for l:name in ['app', 'config', 'db']