Skip to content

Fix grammar typo (s/it's/its/, for posessive form) #199

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

Merged
merged 1 commit into from
Jun 15, 2016
Merged
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
4 changes: 2 additions & 2 deletions css-layout-api/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,13 +86,13 @@ interface Fragment {
```

One important thing to note is that you can't change the `inlineSize` or `blockSize` of a fragment
once have received it from a child layout. The _only_ thing you can change is it's position (with
once have received it from a child layout. The _only_ thing you can change is its position (with
`inlineStart` or `blockStart`) relative to the parent.

See below for a description of baselines.

The `unpositionedBoxes` attribute is a list of `Box`es which couldn't be positioned by the child.
The current layout can choose to layout and position these, or it can pass them up to it's parent.
The current layout can choose to layout and position these, or it can pass them up to its parent.

#### The `ConstraintSpace`

Expand Down