Skip to content

Commit ea43e57

Browse files
authored
Merge pull request #270 from koic/fix_a_typo
Fix a typo
2 parents 98fbd6d + 7ac2126 commit ea43e57

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

README.rdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
== DESCRIPTION:
66

7-
Racc is a LALR(1) parser generator.
7+
Racc is an LALR(1) parser generator.
88
It is written in Ruby itself, and generates Ruby program.
99

1010
== Requirement

doc/en/racc.en.rhtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
</p>
1818

1919
<p>
20-
Racc (Ruby yACC) is a LALR(1) parser generator for Ruby.
20+
Racc (Ruby yACC) is an LALR(1) parser generator for Ruby.
2121
Version 1.4.x is stable release.
2222
</p>
2323
<p>

lib/racc/parser.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class ParseError < StandardError; end
1919
ParseError = Racc::ParseError # :nodoc:
2020
end
2121

22-
# Racc is a LALR(1) parser generator.
22+
# Racc is an LALR(1) parser generator.
2323
# It is written in Ruby itself, and generates Ruby programs.
2424
#
2525
# == Command-line Reference

racc.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ end
99
Gem::Specification.new do |s|
1010
s.name = "racc"
1111
s.version = Racc::VERSION
12-
s.summary = "Racc is a LALR(1) parser generator"
12+
s.summary = "Racc is an LALR(1) parser generator"
1313
s.description = <<DESC
14-
Racc is a LALR(1) parser generator.
14+
Racc is an LALR(1) parser generator.
1515
It is written in Ruby itself, and generates Ruby program.
1616
1717
NOTE: Ruby 1.8.x comes with Racc runtime module. You

0 commit comments

Comments
 (0)