From 2f2c3ea2547c9a76a0452c1a75d7514032ff2dee Mon Sep 17 00:00:00 2001 From: Paulo Ricardo Severo Date: Fri, 6 Oct 2017 12:53:08 -0700 Subject: [PATCH] Fix navigation links in documentation. Summary: When navigating in the docs, these two links are broken. The "Continue Reading" in http://facebook.github.io/react-native/docs/more-resources.html page, and "Previous" in http://facebook.github.io/react-native/docs/platform-specific-code.html. This PR is to fix this. Closes https://github.com/facebook/react-native/pull/16236 Differential Revision: D5998970 Pulled By: hramos fbshipit-source-id: b339408eaada612133f6b63bd11967196ff3a039 --- docs/ComponentsAndAPIs.md | 2 +- docs/MoreResources.md | 2 +- docs/PlatformSpecificInformation.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/ComponentsAndAPIs.md b/docs/ComponentsAndAPIs.md index f1c0672caca..f35c9be3d6d 100644 --- a/docs/ComponentsAndAPIs.md +++ b/docs/ComponentsAndAPIs.md @@ -1,5 +1,5 @@ --- -id: components +id: components-and-apis title: Components and APIs layout: docs category: Guides diff --git a/docs/MoreResources.md b/docs/MoreResources.md index a3ddb3f8769..677c72d7240 100644 --- a/docs/MoreResources.md +++ b/docs/MoreResources.md @@ -4,7 +4,7 @@ title: More Resources layout: docs category: The Basics permalink: docs/more-resources.html -next: components +next: components-and-apis previous: network --- diff --git a/docs/PlatformSpecificInformation.md b/docs/PlatformSpecificInformation.md index bb49df3eca7..71a684a491c 100644 --- a/docs/PlatformSpecificInformation.md +++ b/docs/PlatformSpecificInformation.md @@ -5,7 +5,7 @@ layout: docs category: Guides permalink: docs/platform-specific-code.html next: navigation -previous: components +previous: components-and-apis --- When building a cross-platform app, you'll want to re-use as much code as possible. Scenarios may arise where it makes sense for the code to be different, for example you may want to implement separate visual components for iOS and Android.