From b03fccee5d86aca9946f6f06545c2ca96693d936 Mon Sep 17 00:00:00 2001 From: BeastyBlacksmith Date: Thu, 17 Aug 2023 14:50:59 +0000 Subject: [PATCH] [create-pull-request] automated change --- episodes/04_Using_the_package_manager.md | 7 +++---- episodes/05_Write_functions.md | 2 +- episodes/06_Control_flow.md | 2 +- episodes/09_Adding_tests.md | 2 +- 4 files changed, 6 insertions(+), 7 deletions(-) diff --git a/episodes/04_Using_the_package_manager.md b/episodes/04_Using_the_package_manager.md index 64ca070a..803f26e5 100644 --- a/episodes/04_Using_the_package_manager.md +++ b/episodes/04_Using_the_package_manager.md @@ -76,8 +76,7 @@ To create a new environment she uses the `activate` function of the package mana ````output - Activating project at `~/projects/julia-trebuchet/output/carpentries/projects/trebuchet` - + Activating project at `~/projects/trebuchet` ```` In this environment she adds the `Trebuchet` package from its @@ -120,8 +119,8 @@ environment. ````output -Status `~/projects/julia-trebuchet/output/carpentries/projects/trebuchet/Project.toml` - [f6369f11] ForwardDiff v0.10.35 +Status `~/projects/trebuchet/Project.toml` + [f6369f11] ForwardDiff v0.10.36 [295af30f] Revise v3.5.3 [98b73d46] Trebuchet v0.2.2 diff --git a/episodes/05_Write_functions.md b/episodes/05_Write_functions.md index 6f2397be..9c092070 100644 --- a/episodes/05_Write_functions.md +++ b/episodes/05_Write_functions.md @@ -117,7 +117,7 @@ Pkg.instantiate() ```` ````output - Activating project at `~/projects/julia-trebuchet/output/carpentries/projects/trebuchet` + Activating project at `~/projects/trebuchet` ```` diff --git a/episodes/06_Control_flow.md b/episodes/06_Control_flow.md index 736a5ac6..5ae805ff 100644 --- a/episodes/06_Control_flow.md +++ b/episodes/06_Control_flow.md @@ -34,7 +34,7 @@ Pkg.instantiate() ```` ````output - Activating project at `~/projects/julia-trebuchet/output/carpentries/projects/trebuchet` + Activating project at `~/projects/trebuchet` ```` diff --git a/episodes/09_Adding_tests.md b/episodes/09_Adding_tests.md index 5fe5830a..b2223c03 100644 --- a/episodes/09_Adding_tests.md +++ b/episodes/09_Adding_tests.md @@ -55,7 +55,7 @@ end ```` ````output -Test.DefaultTestSet("Test arithmetic equalities", Any[], 1, false, false, true, 1.691580564130388e9, 1.691580564159508e9, false) +Test.DefaultTestSet("Test arithmetic equalities", Any[], 1, false, false, true, 1.692283843203536e9, 1.692283843252886e9, false) ```` With this Melissa can run her test using the pkg mode of the REPL: