Skip to content

Commit

Permalink
Merge pull request square#200 from jsoref/spelling
Browse files Browse the repository at this point in the history
spelling fixes
  • Loading branch information
JakeWharton committed Mar 14, 2016
2 parents c6fe29a + 9aa18ab commit 984b0d8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion RELEASING.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Releasing
========

1. Change the version in `gradle.properties` to a non-SNAPSHOT verson.
1. Change the version in `gradle.properties` to a non-SNAPSHOT version.
2. Update the `CHANGELOG.md` for the impending release.
3. Update the `README.md` with the new version.
4. `git commit -am "Prepare for release X.Y.Z."` (where X.Y.Z is the new version)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public RecyclerViewLayoutManagerAssert canNotScrollHorizontally() {
public RecyclerViewLayoutManagerAssert canScrollVertically() {
isNotNull();
assertThat(actual.canScrollVertically()) //
.overridingErrorMessage("Expected to be able to scroll verticall but can not.") //
.overridingErrorMessage("Expected to be able to scroll vertically but can not.") //
.isTrue();
return this;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public AttributeSetAssert hasIdAttribute(String value) {
isNotNull();
String actualValue = actual.getIdAttribute();
assertThat(actualValue) //
.overridingErrorMessage("Exepcted ID attribute value <%s> but was <%s>.", value,
.overridingErrorMessage("Exepected ID attribute value <%s> but was <%s>.", value,
actualValue) //
.isEqualTo(value);
return this;
Expand Down

0 comments on commit 984b0d8

Please sign in to comment.