From 646806f33693552819deb2ddc7ce10b830035647 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20de=20Courville?= Date: Mon, 23 Dec 2024 20:57:13 +0100 Subject: [PATCH] Update BUILD.md Fix typo/phrasing --- BUILD.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BUILD.md b/BUILD.md index 0a8eee6f1..672716639 100644 --- a/BUILD.md +++ b/BUILD.md @@ -25,7 +25,7 @@ Instructions for other editors are welcome and feel free to contribute the docum ## Architecture -Processing is build of three distinct parts, the `Core`, `Java` and the `App`. The `Core` currently stands alone and `Java` and `App` depend on it. `Java` and `App` are currently interdependent but we are working on decoupling those two. +Processing is made of three distinct parts, the `Core`, `Java` and the `App`. The `Core` currently stands alone and `Java` and `App` depend on it. `Java` and `App` are currently interdependent but we are working on decoupling those two. `Core`: The part of the code that gets bundled with your sketches, so the functionality like `ellipse(25,25,50,50);` The inner workings of that function can be found here. @@ -57,4 +57,4 @@ The main task to run or debug the PDE is `app:run` this run the application with If your main concern is with the `Core` you don't need to start the whole PDE to test your changes. In IntelliJ IDEA you can select any of the sketches in `core/examples/src/.../` to run by click on the green arrow next to their main functions. This will just compile core and the example sketch. Feel free to also new examples for your newly added functionality. -## Other editors \ No newline at end of file +## Other editors