chore: fix markdown in docs (#26357)

This commit is contained in:
David Sanders 2020-11-05 14:11:38 -08:00 committed by GitHub
parent 103d6d7781
commit 3814a56d48
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -53,7 +53,7 @@ $ gclient sync --with_branch_heads --with_tags
> Instead of `https://github.com/electron/electron`, you can use your own fork > Instead of `https://github.com/electron/electron`, you can use your own fork
> here (something like `https://github.com/<username>/electron`). > here (something like `https://github.com/<username>/electron`).
#### A note on pulling/pushing ### A note on pulling/pushing
If you intend to `git pull` or `git push` from the official `electron` If you intend to `git pull` or `git push` from the official `electron`
repository in the future, you now need to update the respective folder's repository in the future, you now need to update the respective folder's

View file

@ -104,7 +104,7 @@ connectivity checks included in later versions of Chromium.
When considering a module, we recommend that you check: When considering a module, we recommend that you check:
1. the size of dependencies included 1. the size of dependencies included
2) the resources required to load (`require()`) it 2. the resources required to load (`require()`) it
3. the resources required to perform the action you're interested in 3. the resources required to perform the action you're interested in
Generating a CPU profile and a heap memory profile for loading a module can be done Generating a CPU profile and a heap memory profile for loading a module can be done

View file

@ -89,7 +89,7 @@ Debugging native modules can be done with Visual Studio 2017 (running on your de
3. Connect to the target device by selecting _Debug > Attach to Process..._ and enter the device's IP address and the port number displayed by the Visual Studio Remote Debugger tool. 3. Connect to the target device by selecting _Debug > Attach to Process..._ and enter the device's IP address and the port number displayed by the Visual Studio Remote Debugger tool.
4. Click _Refresh_ and select the [appropriate Electron process to attach](../development/debug-instructions-windows.md). 4. Click _Refresh_ and select the [appropriate Electron process to attach](../development/debug-instructions-windows.md).
5. You may need to make sure that any symbols for native modules in your app are loaded correctly. To configure this, head to _Debug > Options..._ in Visual Studio 2017, and add the folders containing your `.pdb` symbols under _Debugging > Symbols_. 5. You may need to make sure that any symbols for native modules in your app are loaded correctly. To configure this, head to _Debug > Options..._ in Visual Studio 2017, and add the folders containing your `.pdb` symbols under _Debugging > Symbols_.
5. Once attached, set any appropriate breakpoints and resume JavaScript execution using Chrome's [remote tools for Node](debugging-main-process.md). 6. Once attached, set any appropriate breakpoints and resume JavaScript execution using Chrome's [remote tools for Node](debugging-main-process.md).
## Getting additional help ## Getting additional help
If you encounter a problem with this documentation, or if your app works when compiled for x86 but not for arm64, please [file an issue](../development/issues.md) with "Windows on Arm" in the title. If you encounter a problem with this documentation, or if your app works when compiled for x86 but not for arm64, please [file an issue](../development/issues.md) with "Windows on Arm" in the title.