Skip to content
This repository has been archived by the owner on Jun 1, 2023. It is now read-only.

Commit

Permalink
Corrected output strings (spelling, grammar)
Browse files Browse the repository at this point in the history
  • Loading branch information
mkevinosullivan committed Apr 13, 2020
1 parent b8d3a74 commit 1d19240
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/shopify-cli/commands/connect.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def fetch_org
org_id = if orgs.count == 1
orgs.first["id"]
else
CLI::UI::Prompt.ask('Which organization does this project belong to?') do |handler|
CLI::UI::Prompt.ask('To which organization does this project belong?') do |handler|
orgs.each { |org| handler.option(org["businessName"]) { org["id"] } }
end
end
Expand All @@ -33,7 +33,7 @@ def get_app(apps)
app_id = if apps.count == 1
apps.first["id"]
else
CLI::UI::Prompt.ask('Which app does this project belong to?') do |handler|
CLI::UI::Prompt.ask('To which app does this project belong?') do |handler|
apps.each { |app| handler.option(app["title"]) { app["id"] } }
end
end
Expand All @@ -44,7 +44,7 @@ def get_shop(shops, id)
if shops.count == 1
shops.first
elsif shops.count == 0
@ctx.puts('No developement shops available.')
@ctx.puts('No development stores available.')
@ctx.puts("Visit {{underline:https://partners.shopify.com/#{id}/stores}} to create one")
else
shop = CLI::UI::Prompt.ask('Which development store would you like to use?') do |handler|
Expand Down

0 comments on commit 1d19240

Please sign in to comment.