From c07d5a5c6abc7399bf3dff4fc4692dbf27fef4e9 Mon Sep 17 00:00:00 2001 From: Peter Cottle Date: Tue, 1 Mar 2022 09:09:20 -0700 Subject: [PATCH] Resolves #915 -- update language about switch command --- src/levels/intro/branching.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/levels/intro/branching.js b/src/levels/intro/branching.js index e41d0673..4982c9b0 100644 --- a/src/levels/intro/branching.js +++ b/src/levels/intro/branching.js @@ -119,9 +119,10 @@ exports.level = { "options": { "markdowns": [ "*Note: In Git version 2.23, a new command called `git switch` was introduced to eventually replace `git checkout`, ", - "which is somewhat overloaded as a command (it does a bunch of separate things). The lessons here will still use ", - "`checkout` instead of `switch` because most people won't have access to `switch` yet, but support for the new command ", - "works in the app if you want to try it out! You can learn more here.* " + "which is somewhat overloaded (it does a bunch of different things depending on the arguments). The lessons here will still use ", + "`checkout` instead of `switch` because the `switch` command is still considered experimental and the syntax may change in the future. ", + "However you can still try out the new `switch` command in this application, and also ", + "learn more here.* " ] } },