Skip to content

Commit

Permalink
Fixed a Double Negative (#3035)
Browse files Browse the repository at this point in the history
Can be confusing for people with minor dyslexia as they can interpret it as "Parent Scene cannot have ....." instead of "Parent scene cannot not have ...".
  • Loading branch information
JediahDizon authored and aksonov committed Jun 6, 2018
1 parent 080813e commit 03045f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/API.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
| `uriPrefix` | `string` | | A uri prefix to strip from incoming urls for deep linking. For example, if you wanted to support deep linking from `www.example.com/user/1234/`, then you could pass `example.com` to only match paths against `/user/1234/`. |

## Scene:
The basic routing component for this router, all `<Scene>` components require a `key` prop that must be unique. A parent `<Scene>` cannot not have a `component` as a `prop` as it will act as a grouping component for its children.
The basic routing component for this router, all `<Scene>` components require a `key` prop that must be unique. A parent `<Scene>` must have a `component` as a `prop` as it will act as a grouping component for its children.

| Property | Type | Default | Description |
|-----------|----------|----------|--------------------------------------------|
Expand Down

0 comments on commit 03045f1

Please sign in to comment.