From 03045f1e824472739096c0550df221e7b91e7dd3 Mon Sep 17 00:00:00 2001 From: Jediah Dizon Date: Wed, 6 Jun 2018 07:24:40 -0600 Subject: [PATCH] Fixed a Double Negative (#3035) 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 ...". --- docs/API.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/API.md b/docs/API.md index bcad6ef84..a312434ec 100644 --- a/docs/API.md +++ b/docs/API.md @@ -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 `` components require a `key` prop that must be unique. A parent `` 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 `` components require a `key` prop that must be unique. A parent `` must have a `component` as a `prop` as it will act as a grouping component for its children. | Property | Type | Default | Description | |-----------|----------|----------|--------------------------------------------|