From a1d5bd716c70d01cdf19ead4fdac0ba7babfa3ab Mon Sep 17 00:00:00 2001 From: sota0805 Date: Thu, 10 Apr 2014 15:44:55 +0900 Subject: [PATCH] Fix: cal_exporter.rb: spelling miss --- lib/cal_exporter.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/cal_exporter.rb b/lib/cal_exporter.rb index 802339c..dc3455a 100644 --- a/lib/cal_exporter.rb +++ b/lib/cal_exporter.rb @@ -9,8 +9,8 @@ module CalExporter class CLI < Thor - desc "calender CALENDER_ID FORMAT SAVE_LOCATION", "Export calender with specified file format" - def calender(calendar_id, format, save_location) + desc "calendar CALENDER_ID FORMAT SAVE_LOCATION", "Export calender with specified file format" + def calendar(calendar_id, format, save_location) import = Importer.new(calendar_id) calendars = import.fetch export = Exporter.new(format, save_location)