From 97afedd86114caf1dc5f8c2e7f991a5009747107 Mon Sep 17 00:00:00 2001 From: Syed Humza Shah Date: Fri, 18 Dec 2015 01:27:58 +0000 Subject: [PATCH] removed usage of keyword as variable this was done mainly to fix annoying syntax highlighting --- lib/linguist/lazy_blob.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/linguist/lazy_blob.rb b/lib/linguist/lazy_blob.rb index 28fb78f3..5418eeae 100644 --- a/lib/linguist/lazy_blob.rb +++ b/lib/linguist/lazy_blob.rb @@ -86,8 +86,8 @@ module Linguist protected # Returns true if the attribute is present and not the string "false". - def boolean_attribute(attr) - attr != "false" + def boolean_attribute(attrbute) + attribute != "false" end def load_blob!