From f31dfedac109ab5b675695f9ae753518ada4cf73 Mon Sep 17 00:00:00 2001 From: Rafael Beckel Date: Tue, 27 Oct 2020 09:13:49 +0100 Subject: [PATCH] Edit walkthrough to make the point of the article clearer --- 009_submodules/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/009_submodules/README.md b/009_submodules/README.md index a74e4b0..077462e 100644 --- a/009_submodules/README.md +++ b/009_submodules/README.md @@ -24,7 +24,7 @@ The end result will be similar to the following, with three modules defined by t In this walkthrough: * We create a root module and two submodules. -* We version the submodules independently by applying separate git tags (`v0.1.1` and `v1.0.0`) +* We version the submodules independently by applying prefixed git tags (`b/v0.1.1` and `a/v1.0.0`) * We have `a` import `b` to make things slightly more interesting. * We finish by creating a module on our local filesystem to use our `a` command.