From 108d4b015e10b28c9b7acd1be40682c11c576b3d Mon Sep 17 00:00:00 2001 From: Matthew Andres Moreno Date: Thu, 18 Apr 2024 17:15:18 -0400 Subject: [PATCH 1/3] Fix typo in header --- doc/library/web/d3/d3-intro.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/library/web/d3/d3-intro.md b/doc/library/web/d3/d3-intro.md index 1c512ad20b..7087ccbbd2 100644 --- a/doc/library/web/d3/d3-intro.md +++ b/doc/library/web/d3/d3-intro.md @@ -1,4 +1,4 @@ -# Using Empirica's D3.js Wrapper +# Using Empirical's D3.js Wrapper If you're writing scientific code that runs on the web, you'll probably want to visualize the results (either as your program runs or From 9916f10520ffe0e2093f2e4d5971651a07756d51 Mon Sep 17 00:00:00 2001 From: Matthew Andres Moreno Date: Thu, 18 Apr 2024 17:18:00 -0400 Subject: [PATCH 2/3] Update suffixes for basetools docs --- doc/QuickStartGuides/2-BaseTools.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/QuickStartGuides/2-BaseTools.md b/doc/QuickStartGuides/2-BaseTools.md index 3db026984e..fff74500c3 100644 --- a/doc/QuickStartGuides/2-BaseTools.md +++ b/doc/QuickStartGuides/2-BaseTools.md @@ -6,7 +6,7 @@ standard library, but provide extra protection against common memory use errors and additional information to the developer. These protections can be turned off by comiling with -DNDEBUG. -## base/assert.h +## base/assert.hpp This file adds an `emp_assert` macro that can handle all of the same functionality as the standard library assert, but with additional @@ -35,7 +35,7 @@ compiled using the `NDEBUG` option (for most compilers, this deactivation is accomplished by using the `-DNDEBUG` flag at compile time.) -## base/array.h and base/vector.h +## base/array.hpp and base/vector.hpp These files setup the `emp::array<...>` and `emp::vector<...>` template objects, which behave almost identically to `std::array<...>` and @@ -44,7 +44,7 @@ bounds checking when they are indexed into or specific size matters. As with asserts, these additional bounds checks are removed when compiled with the `NDEBUG` option. -## base/Ptr.h +## base/Ptr.hpp The `emp::Ptr<...>` template provides an alternate method of building pointers, but with the ability to turn on additional debugging From 91b820d863d449f2f87297669f77f512b35caf4d Mon Sep 17 00:00:00 2001 From: Matthew Andres Moreno Date: Thu, 18 Apr 2024 17:20:08 -0400 Subject: [PATCH 3/3] Add submodule fetch to quickstart --- doc/QuickStartGuides/1-HelloWorld.md | 1 + 1 file changed, 1 insertion(+) diff --git a/doc/QuickStartGuides/1-HelloWorld.md b/doc/QuickStartGuides/1-HelloWorld.md index e34a8b4d0c..a8c71175d6 100644 --- a/doc/QuickStartGuides/1-HelloWorld.md +++ b/doc/QuickStartGuides/1-HelloWorld.md @@ -40,6 +40,7 @@ get your working environment all set. ```shell git clone https://github.com/devosoft/Empirical cd Empirical/examples/ProjectTemplate +git submodule update --init --depth 1 --recursive ``` Let's take a look at what we want to compile.