Skip to content

Commit

Permalink
Merge pull request #270 from koic/fix_a_typo
Browse files Browse the repository at this point in the history
Fix a typo
  • Loading branch information
flavorjones authored Jun 7, 2024
2 parents 98fbd6d + 7ac2126 commit ea43e57
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.rdoc
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

== DESCRIPTION:

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

== Requirement
Expand Down
2 changes: 1 addition & 1 deletion doc/en/racc.en.rhtml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
</p>

<p>
Racc (Ruby yACC) is a LALR(1) parser generator for Ruby.
Racc (Ruby yACC) is an LALR(1) parser generator for Ruby.
Version 1.4.x is stable release.
</p>
<p>
Expand Down
2 changes: 1 addition & 1 deletion lib/racc/parser.rb
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class ParseError < StandardError; end
ParseError = Racc::ParseError # :nodoc:
end

# Racc is a LALR(1) parser generator.
# Racc is an LALR(1) parser generator.
# It is written in Ruby itself, and generates Ruby programs.
#
# == Command-line Reference
Expand Down
4 changes: 2 additions & 2 deletions racc.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ end
Gem::Specification.new do |s|
s.name = "racc"
s.version = Racc::VERSION
s.summary = "Racc is a LALR(1) parser generator"
s.summary = "Racc is an LALR(1) parser generator"
s.description = <<DESC
Racc is a LALR(1) parser generator.
Racc is an LALR(1) parser generator.
It is written in Ruby itself, and generates Ruby program.
NOTE: Ruby 1.8.x comes with Racc runtime module. You
Expand Down

0 comments on commit ea43e57

Please sign in to comment.