Skip to content

Commit 23bb3bd

Browse files
authored
Merge pull request electron#12577 from TiagoDanin-Forks/DeadURLs
[Docs] Fix dead urls
2 parents a0cac05 + d7a003b commit 23bb3bd

15 files changed

Lines changed: 20 additions & 20 deletions

docs/api/app.md

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

docs/api/frameless-window.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,4 +176,4 @@ when you right click on it a system menu will pop up. To make the context menu
176176
behave correctly on all platforms you should never use a custom context menu on
177177
draggable areas.
178178

179-
[ignore-mouse-events]: browser-window.md#winsetignoremouseeventsignore
179+
[ignore-mouse-events]: browser-window.md#winsetignoremouseeventsignore-options

docs/api/in-app-purchase.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Emitted when one or more transactions have been updated.
1515
Returns:
1616

1717
* `event` Event
18-
* `transactions` Transaction[] - Array of [`Transaction`](structures/transaction) objects.
18+
* `transactions` Transaction[] - Array of [`Transaction`](structures/transaction.md) objects.
1919

2020
## Methods
2121

@@ -35,7 +35,7 @@ You should listen for the `transactions-updated` event as soon as possible and c
3535

3636
* `productIDs` String[] - The identifiers of the products to get.
3737
* `callback` Function - The callback called with the products or an empty array if the products don't exist.
38-
* `products` Product[] - Array of [`Product`](structures/product) objects
38+
* `products` Product[] - Array of [`Product`](structures/product.md) objects
3939

4040
Retrieves the product descriptions.
4141

docs/api/synopsis.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ both processes.
1313

1414
The basic rule is: if a module is [GUI][gui] or low-level system related, then
1515
it should be only available in the main process. You need to be familiar with
16-
the concept of [main process vs. renderer process](../tutorial/quick-start.md#main-process)
16+
the concept of [main process vs. renderer process](../tutorial/application-architecture.md#main-and-renderer-processes)
1717
scripts to be able to use those modules.
1818

1919
The main process script is just like a normal Node.js script:
@@ -43,7 +43,7 @@ extra ability to use node modules:
4343
</html>
4444
```
4545

46-
To run your app, read [Run your app](../tutorial/quick-start.md#run-your-app).
46+
To run your app, read [Run your app](../tutorial/first-app.md#running-your-app).
4747

4848
## Destructuring assignment
4949

docs/api/touch-bar-button.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
> Create a button in the touch bar for native macOS applications
44
5-
Process: [Main](../tutorial/quick-start.md#main-process)
5+
Process: [Main](../tutorial/application-architecture.md#main-and-renderer-processes)
66

77
### `new TouchBarButton(options)` _Experimental_
88

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
> Create a color picker in the touch bar for native macOS applications
44
5-
Process: [Main](../tutorial/quick-start.md#main-process)
5+
Process: [Main](../tutorial/application-architecture.md#main-and-renderer-processes)
66

77
### `new TouchBarColorPicker(options)` _Experimental_
88

docs/api/touch-bar-group.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
> Create a group in the touch bar for native macOS applications
44
5-
Process: [Main](../tutorial/quick-start.md#main-process)
5+
Process: [Main](../tutorial/application-architecture.md#main-and-renderer-processes)
66

77
### `new TouchBarGroup(options)` _Experimental_
88

docs/api/touch-bar-label.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
> Create a label in the touch bar for native macOS applications
44
5-
Process: [Main](../tutorial/quick-start.md#main-process)
5+
Process: [Main](../tutorial/application-architecture.md#main-and-renderer-processes)
66

77
### `new TouchBarLabel(options)` _Experimental_
88

docs/api/touch-bar-popover.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
> Create a popover in the touch bar for native macOS applications
44
5-
Process: [Main](../tutorial/quick-start.md#main-process)
5+
Process: [Main](../tutorial/application-architecture.md#main-and-renderer-processes)
66

77
### `new TouchBarPopover(options)` _Experimental_
88

docs/api/touch-bar-scrubber.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
> Create a scrubber (a scrollable selector)
44
5-
Process: [Main](../tutorial/quick-start.md#main-process)
5+
Process: [Main](../tutorial/application-architecture.md#main-and-renderer-processes)
66

77
### `new TouchBarScrubber(options)` _Experimental_
88

0 commit comments

Comments
 (0)