From 01cb024f4435c669b3ece9e809fd02a45eedccf4 Mon Sep 17 00:00:00 2001 From: Maik Ellerbrock Date: Tue, 12 Jul 2016 07:31:18 +0800 Subject: [PATCH] fix broken link fixed broken link "how to share data between web pages" in section "Differences Between Main Process and Renderer Process" --- docs/tutorial/quick-start.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial/quick-start.md b/docs/tutorial/quick-start.md index 59a019596ba9..d703ac7462cd 100644 --- a/docs/tutorial/quick-start.md +++ b/docs/tutorial/quick-start.md @@ -47,7 +47,7 @@ In Electron, we have several ways to communicate between the main process and renderer processes. Like [`ipcRenderer`](../api/ipc-renderer.md) and [`ipcMain`](../api/ipc-main.md) modules for sending messages, and the [remote](../api/remote.md) module for RPC style communication. There is also -an FAQ entry on [how to share data between web pages][share-data]. +an FAQ entry on [how to share data between web pages](../faq.md/#how-to-share-data-between-web-pages). ## Write your First Electron App