Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix grammar in doccomment #17

Open
wants to merge 1 commit into
base: TESP.02-Exercise-AddMenuActivityScreenTest
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@
import org.junit.runner.RunWith;

/**
* This test demos a user clicking the decrement button and verifying that it properly decrease
* the quantity the total cost.
* This test demos a user clicking the decrement button and verifying that it properly decreases
* the quantity and the total cost.
*/

@RunWith(AndroidJUnit4.class)
Expand Down Expand Up @@ -67,4 +67,4 @@ public void clickDecrementButton_ChangesQuantityAndCost() {
onView(withId(R.id.cost_text_view)).check(matches(withText("$0.00")));

}
}
}