From 838f555fb990020609ad8cd3ddf39a4d3a605ee7 Mon Sep 17 00:00:00 2001 From: Alex Dunae Date: Fri, 31 Dec 2010 14:23:39 -0800 Subject: [PATCH] Syntax doc typo and rename --- data/{SYNTAX => SYNTAX.rdoc} | 2 +- rakefile.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename data/{SYNTAX => SYNTAX.rdoc} (98%) diff --git a/data/SYNTAX b/data/SYNTAX.rdoc similarity index 98% rename from data/SYNTAX rename to data/SYNTAX.rdoc index b870253..617ac0a 100644 --- a/data/SYNTAX +++ b/data/SYNTAX.rdoc @@ -11,7 +11,7 @@ Holidays are grouped by month from 1 through 12. Each entry within a month can ===== Dates defined by a fixed date (e.g. January 1st) -[wday] Integer representing day of the month (1 through 31). +[mday] Integer representing day of the month (1 through 31). For example, the following holiday is on the first of January and available in the ca, us and au regions. diff --git a/rakefile.rb b/rakefile.rb index 618f857..1e3dca9 100644 --- a/rakefile.rb +++ b/rakefile.rb @@ -36,7 +36,7 @@ Rake::RDocTask.new(:rdoc) do |rdoc| rdoc.options << '--all' << '--inline-source' << '--line-numbers' rdoc.options << '--charset' << 'utf-8' rdoc.rdoc_files.include('README.rdoc') - rdoc.rdoc_files.include('data/SYNTAX') + rdoc.rdoc_files.include('data/SYNTAX.rdoc') rdoc.rdoc_files.include('lib/holidays/MANIFEST') rdoc.rdoc_files.include('REFERENCES') rdoc.rdoc_files.include('CHANGELOG')