Skip to content

Commit 1b94e45

Browse files
committed
cleanup comment
1 parent 3de43d9 commit 1b94e45

3 files changed

Lines changed: 11 additions & 14 deletions

File tree

microsoft-edge/devtools-guide-chromium/javascript/guides/mark-content-scripts-library-code.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ ms.date: 05/04/2021
2323
limitations under the License. -->
2424
# Add content scripts to the Ignore List
2525

26-
<!-- todo: define _content script_, like in
26+
<!-- todo: define _content script_
2727
* [Using the Content scripts tab for Microsoft Edge extensions](../../sources/index.md#using-the-content-scripts-tab-for-microsoft-edge-extensions) in _Sources tool overview_.
2828
* [Content scripts](https://developer.chrome.com/docs/extensions/develop/concepts/content-scripts) in Chrome Extensions docs.
2929
-->

microsoft-edge/devtools-guide-chromium/javascript/overrides.md

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,11 @@ ms.date: 09/25/2023
1313

1414
Sometimes you need to try out some possible fixes for a webpage, but you don't have access to the source files, or changing the page requires a slow and complex build process. You can debug and fix all kind of problems in DevTools. But the changes don't persist; after you refresh the local file, all your work is gone. The Overrides feature in the [Sources](../sources/index.md) tool helps you solve this problem.
1515

16-
You can now take a resource of the current webpage and store it locally. When you refresh the webpage, the browser doesn't load the resource from the server; instead, the browser replaces the server resource with your local copy of the resource.
17-
18-
<!-- todo: a note from review, maybe incorp:
19-
The overrides that you make are saved across reloads.
20-
You're not supposed to use this feature for mapping to your source files.
21-
When you set up a folder for local overrides the first time, that folder should be empty.
22-
DevTools will create all of the folders and sub-folders that it needs to store overrides within it.
23-
-->
16+
You can take a resource of the current webpage and store it locally. When you refresh the webpage, the browser doesn't load the resource from the server; instead, the browser replaces the server resource with your local copy of the resource. The overrides that you create are saved across reloads.
17+
18+
The overrides feature is not intended for mapping to your source files.
19+
20+
When you set up a folder for local overrides the first time, that folder should be empty. DevTools then creates all of the folders and sub-folders that it needs to store overrides within it.
2421

2522

2623
<!-- ====================================================================== -->

microsoft-edge/devtools-guide-chromium/sample-code/sample-code.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,8 @@ To clone the **MicrosoftEdge / Demos** repo to your local drive:
179179

180180
```Shell
181181
# example location where the repo directory will be added:
182-
cd c:/users/localAccount/github/
182+
cd ~/GitHub
183+
cd c:/users/localAccount/GitHub/ # alt format
183184
git clone https://github.com/MicrosoftEdge/Demos.git
184185
```
185186

@@ -302,8 +303,7 @@ If you start the localhost server from a specific demo folder, such as `\Demos\d
302303
Starting the server from within a specific demo directory:
303304

304305
```
305-
$ cd "C:\Users\localAccount\GitHub\Demos\demo-to-do"
306-
$ cd ~/GitHub/Demos/demo-to-do # alt syntax
306+
$ cd ~/GitHub/Demos/demo-to-do
307307
$ npx http-server
308308
```
309309

@@ -322,8 +322,8 @@ If you start the localhost server from within the entire `\Demos\` folder and th
322322
Starting the server from within the entire `\Demos\` directory:
323323

324324
```
325-
$ cd "C:\Users\localAccount\GitHub\Demos"
326-
$ cd ~/GitHub/Demos # alt syntax
325+
$ cd ~/GitHub/Demos
326+
$ cd "C:\Users\localAccount\GitHub\Demos" # alt syntax
327327
$ npx http-server
328328
```
329329

0 commit comments

Comments
 (0)