Browse Source

Merge pull request #12577 from TiagoDanin-Forks/DeadURLs

[Docs] Fix dead urls
Zeke Sikelianos 7 years ago
parent
commit
23bb3bd963

+ 1 - 1
docs/api/app.md

@@ -1113,7 +1113,7 @@ Sets the `image` associated with this dock icon.
 [LSCopyDefaultHandlerForURLScheme]: https://developer.apple.com/library/mac/documentation/Carbon/Reference/LaunchServicesReference/#//apple_ref/c/func/LSCopyDefaultHandlerForURLScheme
 [handoff]: https://developer.apple.com/library/ios/documentation/UserExperience/Conceptual/Handoff/HandoffFundamentals/HandoffFundamentals.html
 [activity-type]: https://developer.apple.com/library/ios/documentation/Foundation/Reference/NSUserActivity_Class/index.html#//apple_ref/occ/instp/NSUserActivity/activityType
-[unity-requirement]: ../tutorial/desktop-environment-integration.md#unity-launcher-shortcuts-linux
+[unity-requirement]: ../tutorial/desktop-environment-integration.md#unity-launcher
 [mas-builds]: ../tutorial/mac-app-store-submission-guide.md
 [Squirrel-Windows]: https://github.com/Squirrel/Squirrel.Windows
 [JumpListBeginListMSDN]: https://msdn.microsoft.com/en-us/library/windows/desktop/dd378398(v=vs.85).aspx

+ 1 - 1
docs/api/frameless-window.md

@@ -176,4 +176,4 @@ when you right click on it a system menu will pop up. To make the context menu
 behave correctly on all platforms you should never use a custom context menu on
 draggable areas.
 
-[ignore-mouse-events]: browser-window.md#winsetignoremouseeventsignore
+[ignore-mouse-events]: browser-window.md#winsetignoremouseeventsignore-options

+ 2 - 2
docs/api/in-app-purchase.md

@@ -15,7 +15,7 @@ Emitted when one or more transactions have been updated.
 Returns:
 
 * `event` Event
-* `transactions` Transaction[] - Array of [`Transaction`](structures/transaction) objects.
+* `transactions` Transaction[] - Array of [`Transaction`](structures/transaction.md) objects.
 
 ## Methods
 
@@ -35,7 +35,7 @@ You should listen for the `transactions-updated` event as soon as possible and c
 
 * `productIDs` String[] - The identifiers of the products to get.
 * `callback` Function - The callback called with the products or an empty array if the products don't exist.
-    * `products` Product[] - Array of [`Product`](structures/product) objects
+    * `products` Product[] - Array of [`Product`](structures/product.md) objects
 
 Retrieves the product descriptions.
 

+ 2 - 2
docs/api/synopsis.md

@@ -13,7 +13,7 @@ both processes.
 
 The basic rule is: if a module is [GUI][gui] or low-level system related, then
 it should be only available in the main process. You need to be familiar with
-the concept of [main process vs. renderer process](../tutorial/quick-start.md#main-process)
+the concept of [main process vs. renderer process](../tutorial/application-architecture.md#main-and-renderer-processes)
 scripts to be able to use those modules.
 
 The main process script is just like a normal Node.js script:
@@ -43,7 +43,7 @@ extra ability to use node modules:
 </html>
 ```
 
-To run your app, read [Run your app](../tutorial/quick-start.md#run-your-app).
+To run your app, read [Run your app](../tutorial/first-app.md#running-your-app).
 
 ## Destructuring assignment
 

+ 1 - 1
docs/api/touch-bar-button.md

@@ -2,7 +2,7 @@
 
 > Create a button in the touch bar for native macOS applications
 
-Process: [Main](../tutorial/quick-start.md#main-process)
+Process: [Main](../tutorial/application-architecture.md#main-and-renderer-processes)
 
 ### `new TouchBarButton(options)` _Experimental_
 

+ 1 - 1
docs/api/touch-bar-color-picker.md

@@ -2,7 +2,7 @@
 
 > Create a color picker in the touch bar for native macOS applications
 
-Process: [Main](../tutorial/quick-start.md#main-process)
+Process: [Main](../tutorial/application-architecture.md#main-and-renderer-processes)
 
 ### `new TouchBarColorPicker(options)` _Experimental_
 

+ 1 - 1
docs/api/touch-bar-group.md

@@ -2,7 +2,7 @@
 
 > Create a group in the touch bar for native macOS applications
 
-Process: [Main](../tutorial/quick-start.md#main-process)
+Process: [Main](../tutorial/application-architecture.md#main-and-renderer-processes)
 
 ### `new TouchBarGroup(options)` _Experimental_
 

+ 1 - 1
docs/api/touch-bar-label.md

@@ -2,7 +2,7 @@
 
 > Create a label in the touch bar for native macOS applications
 
-Process: [Main](../tutorial/quick-start.md#main-process)
+Process: [Main](../tutorial/application-architecture.md#main-and-renderer-processes)
 
 ### `new TouchBarLabel(options)` _Experimental_
 

+ 1 - 1
docs/api/touch-bar-popover.md

@@ -2,7 +2,7 @@
 
 > Create a popover in the touch bar for native macOS applications
 
-Process: [Main](../tutorial/quick-start.md#main-process)
+Process: [Main](../tutorial/application-architecture.md#main-and-renderer-processes)
 
 ### `new TouchBarPopover(options)` _Experimental_
 

+ 1 - 1
docs/api/touch-bar-scrubber.md

@@ -2,7 +2,7 @@
 
 > Create a scrubber (a scrollable selector)
 
-Process: [Main](../tutorial/quick-start.md#main-process)
+Process: [Main](../tutorial/application-architecture.md#main-and-renderer-processes)
 
 ### `new TouchBarScrubber(options)` _Experimental_
 

+ 1 - 1
docs/api/touch-bar-segmented-control.md

@@ -2,7 +2,7 @@
 
 > Create a segmented control (a button group) where one button has a selected state
 
-Process: [Main](../tutorial/quick-start.md#main-process)
+Process: [Main](../tutorial/application-architecture.md#main-and-renderer-processes)
 
 ### `new TouchBarSegmentedControl(options)` _Experimental_
 

+ 1 - 1
docs/api/touch-bar-slider.md

@@ -2,7 +2,7 @@
 
 > Create a slider in the touch bar for native macOS applications
 
-Process: [Main](../tutorial/quick-start.md#main-process)
+Process: [Main](../tutorial/application-architecture.md#main-and-renderer-processes)
 
 ### `new TouchBarSlider(options)` _Experimental_
 

+ 1 - 1
docs/api/touch-bar-spacer.md

@@ -2,7 +2,7 @@
 
 > Create a spacer between two items in the touch bar for native macOS applications
 
-Process: [Main](../tutorial/quick-start.md#main-process)
+Process: [Main](../tutorial/application-architecture.md#main-and-renderer-processes)
 
 ### `new TouchBarSpacer(options)` _Experimental_
 

+ 1 - 1
docs/api/touch-bar.md

@@ -2,7 +2,7 @@
 
 > Create TouchBar layouts for native macOS applications
 
-Process: [Main](../tutorial/quick-start.md#main-process)
+Process: [Main](../tutorial/application-architecture.md#main-and-renderer-processes)
 
 ### `new TouchBar(options)` _Experimental_
 

+ 4 - 4
docs/development/README.md

@@ -1,14 +1,14 @@
 # Developing Electron
 
-These guides are intended for people working on the Electron project itself. 
-For guides on Electron app development, see 
+These guides are intended for people working on the Electron project itself.
+For guides on Electron app development, see
 [/docs/README.md](../README.md#guides-and-tutorials).
 
 * [Code of Conduct](../../CODE_OF_CONDUCT.md)
 * [Contributing to Electron](../../CONTRIBUTING.md)
 * [Issues](issues.md)
 * [Pull Requests](pull-requests.md)
-* [Documentation Styleguide](styleguide.md)
+* [Documentation Styleguide](coding-style.md#documentation)
 * [Source Code Directory Structure](source-code-directory-structure.md)
 * [Coding Style](coding-style.md)
 * [Using clang-format on C++ Code](clang-format.md)
@@ -25,4 +25,4 @@ For guides on Electron app development, see
 * [Upgrading Chromium](upgrading-chromium.md)
 * [Upgrading Crashpad](upgrading-crashpad.md)
 * [Upgrading Node](upgrading-node.md)
-* [Releasing](releasing.md)
+* [Releasing](releasing.md)