From 20157fa04d7b095accef5f87156a4dfbe6047db3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Ramos?= Date: Tue, 2 Aug 2016 14:25:54 -0700 Subject: [PATCH] Fix GitHub path --- website/core/HeaderWithGithub.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/core/HeaderWithGithub.js b/website/core/HeaderWithGithub.js index e6d0e3caf2c..c8e87770ceb 100644 --- a/website/core/HeaderWithGithub.js +++ b/website/core/HeaderWithGithub.js @@ -13,7 +13,7 @@ var H = require('Header'); var React = require('React'); function getGitHubPath(path) { - return 'https://github.com/facebook/react-native/blob/' + path; + return 'https://github.com/facebook/react-native/blob/master/' + path; } var HeaderWithGithub = React.createClass({