From b33424e5ed09f15cbfa0198a01ad372c1989f6af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Ramos?= Date: Mon, 11 Jul 2016 12:09:15 -0700 Subject: [PATCH] Fix links from networking to navigation in The Basics. Summary: Fixes #8611. Once this lands, we may want to cherry-pick it into 0.29 to fix the broken links. Closes https://github.com/facebook/react-native/pull/8698 Differential Revision: D3544388 Pulled By: JoelMarcey fbshipit-source-id: d5132b112e3079d1fd9ab6d84ff1a4328bee871f --- docs/Networking.md | 2 +- docs/{Navigators.md => UsingNavigators.md} | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename docs/{Navigators.md => UsingNavigators.md} (99%) diff --git a/docs/Networking.md b/docs/Networking.md index 23a828977..baffa2c44 100644 --- a/docs/Networking.md +++ b/docs/Networking.md @@ -4,7 +4,7 @@ title: Networking layout: docs category: The Basics permalink: docs/network.html -next: navigators +next: using-navigators --- Many mobile apps need to load resources from a remote URL. You may want to make a POST request to a REST API, or you may simply need to fetch a chunk of static content from another server. diff --git a/docs/Navigators.md b/docs/UsingNavigators.md similarity index 99% rename from docs/Navigators.md rename to docs/UsingNavigators.md index eb389f87d..ad8da54cc 100644 --- a/docs/Navigators.md +++ b/docs/UsingNavigators.md @@ -1,5 +1,5 @@ --- -id: navigators +id: using-navigators title: Using Navigators layout: docs category: The Basics