From def8803919ed1183c0292adaf9978ab8b0e500ae Mon Sep 17 00:00:00 2001 From: Andrew Pareles <43356051+andrewpareles@users.noreply.github.com> Date: Wed, 9 Apr 2025 21:33:30 -0700 Subject: [PATCH] Update VOID_CODEBASE_GUIDE.md --- VOID_CODEBASE_GUIDE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VOID_CODEBASE_GUIDE.md b/VOID_CODEBASE_GUIDE.md index f96328e2..8ec33aa4 100644 --- a/VOID_CODEBASE_GUIDE.md +++ b/VOID_CODEBASE_GUIDE.md @@ -24,7 +24,7 @@ Here is some important terminology you should know if you're working inside VSCo ### Minimal VSCode Rundown Here's a minimal VSCode rundown if you're just getting started with Void: -- VSCode is (and therefore Void is) an Electron app. Electron runs two processes: a **main** process (for internal workings) and a **browser** process (browser means HTML in general, not just "web browser"). +- VSCode is (and therefore Void is) an Electron app. Electron runs two processes: a **main** process (for internals) and a **browser** process (browser means HTML in general, not just "web browser"). - Code in a `browser/` folder lives in the browser, so it can use `window` and other browser items. - Code in an `electron-main/` lives on the main process, so it can import `node_modules`. - Code in `common/` can be imported by either one.