Skip to content

Commit ce1f388

Browse files
committed
Fix grammar mistake
Infladed -> Inflated
1 parent a3f7e5f commit ce1f388

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

project_and_code_guidelines.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ Layout files should match the name of the Android components that they are inten
8181
| AdapterView item | --- | `item_person.xml` |
8282
| Partial layout | --- | `partial_stats_bar.xml` |
8383

84-
A slighly different case is when we are creating a layout that is going to be infladed by an `Adapter`, e.g to populate a `ListView`. In this case, the name of the layout should start with `item_`
84+
A slighly different case is when we are creating a layout that is going to be inflated by an `Adapter`, e.g to populate a `ListView`. In this case, the name of the layout should start with `item_`
8585

8686
Note that there are cases where these rules will not be possible to apply. For example, when creating layout files that are intended to be part of other layouts. In this case you should use the prefix `partial_`
8787

@@ -610,4 +610,4 @@ When using the Espresso api is a common practise to place chained method in new
610610
onView(withId(R.id.view))
611611
.perform(scrollTo())
612612
.check(matches(isDisplayed()))
613-
```
613+
```

0 commit comments

Comments
 (0)