Bug 1382580 - Replace mention of the old event emitter with the new one in documentation; r=nchevobbe draft
authoryulia <ystartsev@mozilla.com>
Thu, 03 May 2018 12:56:01 +0200
changeset 791119 2ac98ecbea685bdb3d136d5a4e7b4c74af7dfc5b
parent 791118 4996965e00979a93576059309b8c8a052f78a302
child 791120 316a7aac8795a4b0fb029c57ac52cda977360f3c
push id108702
push userbmo:ystartsev@mozilla.com
push dateThu, 03 May 2018 15:08:22 +0000
reviewersnchevobbe
bugs1382580
milestone61.0a1
Bug 1382580 - Replace mention of the old event emitter with the new one in documentation; r=nchevobbe MozReview-Commit-ID: 1PMPdlDn2yU
devtools/docs/getting-started/development-profiles.md
--- a/devtools/docs/getting-started/development-profiles.md
+++ b/devtools/docs/getting-started/development-profiles.md
@@ -25,27 +25,27 @@ Next time you start Firefox with `./mach
 ## Enable additional logging
 
 You can change the value of these preferences by going to `about:config`:
 
 | Preference name | Value | Comments |
 | --------------- | --------------- | -------- |
 | `browser.dom.window.dump.enabled` | `true` | Adds global `dump` function to log strings to `stdout` |
 | `devtools.debugger.log` (*) | `true` | Dump packets sent over remote debugging protocol to `stdout`.<br /><br />The [remote protocol inspector add-on](https://github.com/firebug/rdp-inspector/wiki) might be useful too. |
-| `devtools.dump.emit` (*) | `true` | Log event notifications from the EventEmitter class<br />(found at `devtools/shared/old-event-emitter.js`). |
+| `devtools.dump.emit` (*) | `true` | Log event notifications from the EventEmitter class<br />(found at `devtools/shared/event-emitter.js`). |
 
 Preferences marked with a (`*`) also require `browser.dom.window.dump.enabled` in order to work. You might not want to enable *all* of those all the time, as they can cause the output to be way too verbose, but they might be useful if you're working on a server actor, for example<!--TODO link to actors doc-->.
 
 Restart the browser to apply configuration changes.
 
 ## Enable remote debugging and the Browser Toolbox
 
 These settings allow you to use the [browser toolbox](https://developer.mozilla.org/docs/Tools/Browser_Toolbox) to inspect the DevTools themselves, set breakpoints inside of DevTools code, and run the [Scratchpad](https://developer.mozilla.org/en-US/docs/Tools/Scratchpad) in the *Browser* environment.
 
-Open DevTools, and click the "Toolbox Options" gear icon in the top right (the image underneath is outdated). <!--TODO update image--> 
+Open DevTools, and click the "Toolbox Options" gear icon in the top right (the image underneath is outdated). <!--TODO update image-->
 
 Make sure the following two options are checked:
 
 - Enable browser chrome and add-on debugging toolboxes
 - Enable remote debugging
 
 ![Settings for developer tools - "Enable Chrome Debugging" and "Enable Remote Debugging"](../resources/DevToolsDeveloperSettings.png)