From 888931c1032cee77c4ff2700a09ea2996e387832 Mon Sep 17 00:00:00 2001 From: John Bampton Date: Fri, 15 Apr 2022 11:32:32 +1000 Subject: [PATCH] Fix grammar and case of Ruby --- doc/guides/mrbgems.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/guides/mrbgems.md b/doc/guides/mrbgems.md index 64a12cff4b..68d0560c2b 100644 --- a/doc/guides/mrbgems.md +++ b/doc/guides/mrbgems.md @@ -60,7 +60,7 @@ mrbgem from the core or mgem-list. Note that if more than one git-based gem has the same base name (i.e. the default checkout directory name), it is (now) an error -**UNLESS** they are have the same repository URL, branch name and +**UNLESS** they have the same repository URL, branch name and commit-id (i.e. checksum hash). You can bypass this by explicitly importing your preferred version **first** and setting the `canonical:` option to `true`: @@ -160,7 +160,7 @@ GEM directory. A typical GEM specification could look like this for example: MRuby::Gem::Specification.new('c_and_ruby_extension_example') do |spec| spec.license = 'MIT' spec.author = 'mruby developers' - spec.summary = 'Example mrbgem using C and ruby' + spec.summary = 'Example mrbgem using C and Ruby' end ```