From bc9f6d61f72029792c1aae5af3849140a063c06b Mon Sep 17 00:00:00 2001 From: cyclotron3k Date: Wed, 27 Apr 2022 17:27:01 +1000 Subject: [PATCH] Fix typos --- README.md | 2 +- github_api.gemspec | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e37d2086..69023490 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ A Ruby client for the official GitHub API. -Supports all the API methods. It's built in a modular way. You can either instantiate the whole API wrapper Github.new or use parts of it i.e. Github::Client::Repos.new if working solely with repositories is your main concern. Intuitive query methods allow you easily call API endpoints. +Supports all the API methods. It's built in a modular way. You can either instantiate the whole API wrapper Github.new or use parts of it i.e. Github::Client::Repos.new if working solely with repositories is your main concern. Intuitive query methods allow you to easily call API endpoints. ## Features diff --git a/github_api.gemspec b/github_api.gemspec index ce95504e..6e9619e1 100644 --- a/github_api.gemspec +++ b/github_api.gemspec @@ -9,7 +9,7 @@ Gem::Specification.new do |gem| gem.email = ["piotr@piotrmurach.com"] gem.homepage = "http://piotrmurach.github.io/github/" gem.summary = "Ruby client for the official GitHub API" - gem.description = %q{ Ruby client that supports all of the GitHub API methods. It"s build in a modular way, that is, you can either instantiate the whole api wrapper Github.new or use parts of it e.i. Github::Client::Repos.new if working solely with repositories is your main concern. Intuitive query methods allow you easily call API endpoints. } + gem.description = %q{ Ruby client that supports all of the GitHub API methods. It's built in a modular way, that is, you can either instantiate the whole api wrapper Github.new or use parts of it, i.e. Github::Client::Repos.new if working solely with repositories is your main concern. Intuitive query methods allow you to easily call API endpoints. } gem.license = "MIT" gem.required_ruby_version = ">= 2.0.0"