From 360326ecad09a6642b9fcd5e3477594d1aa53f74 Mon Sep 17 00:00:00 2001 From: Jeremy Apthorp Date: Sun, 16 Feb 2020 16:47:22 -0800 Subject: [PATCH] docs: update dev docs atom -> shell (#22199) --- docs/development/debug-instructions-windows.md | 2 +- docs/development/debugging-instructions-macos.md | 2 +- docs/development/pull-requests.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/development/debug-instructions-windows.md b/docs/development/debug-instructions-windows.md index 4c7a4f1b11f7..e4af652f7781 100644 --- a/docs/development/debug-instructions-windows.md +++ b/docs/development/debug-instructions-windows.md @@ -48,7 +48,7 @@ still set breakpoints - Visual Studio will automatically figure out that the source code matches the code running in the attached process and break accordingly. -Relevant code files can be found in `./atom/`. +Relevant code files can be found in `./shell/`. ### Attaching diff --git a/docs/development/debugging-instructions-macos.md b/docs/development/debugging-instructions-macos.md index fcdc33820f28..017ecb553c25 100644 --- a/docs/development/debugging-instructions-macos.md +++ b/docs/development/debugging-instructions-macos.md @@ -46,7 +46,7 @@ this basic introduction, let's assume that you're calling a command from JavaScr that isn't behaving correctly - so you'd like to break on that command's C++ counterpart inside the Electron source. -Relevant code files can be found in `./atom/`. +Relevant code files can be found in `./shell/`. Let's assume that you want to debug `app.setName()`, which is defined in `browser.cc` as `Browser::SetName()`. Set the breakpoint using the `breakpoint` command, specifying diff --git a/docs/development/pull-requests.md b/docs/development/pull-requests.md index 53eec082752b..c27cca521849 100644 --- a/docs/development/pull-requests.md +++ b/docs/development/pull-requests.md @@ -55,7 +55,7 @@ $ git checkout -b my-branch -t upstream/master ### Step 4: Code Most pull requests opened against the `electron/electron` repository include -changes to either the C/C++ code in the `atom/` folder, +changes to either the C/C++ code in the `shell/` folder, the JavaScript code in the `lib/` folder, the documentation in `docs/api/` or tests in the `spec/` folder.