From a598bf43aa2c1cac8c169f6df5255354c8451d54 Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Mon, 30 Nov 2015 17:42:39 -0600 Subject: [PATCH] Update the way a sentence reads. --- rails/select-a-select-by-selector.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rails/select-a-select-by-selector.md b/rails/select-a-select-by-selector.md index 58f035e..dbd3eb9 100644 --- a/rails/select-a-select-by-selector.md +++ b/rails/select-a-select-by-selector.md @@ -9,8 +9,8 @@ select("Charizard", from: "Pokemon") However, not all forms are going to have a label paired with every `select` input. We don't want to let our test coverage suffer, so we are going to -need a different way to select. Capybara allows us to chain `select` off a -`find` like so: +need a different way to select. Fortunately, Capybara allows us to chain +`select` off a `find` like so: ```ruby find('#pokemon_list').select('Charizard')