From d7339b750c85847d5b458072a779775cdb799556 Mon Sep 17 00:00:00 2001 From: Kiril Ivanov Date: Fri, 12 Sep 2025 10:11:42 +0300 Subject: [PATCH] Add missing words in 'Merging' Missing "switching TO the branch" and "you want to MERGE into" --- README.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.markdown b/README.markdown index ecf8977..78849a2 100644 --- a/README.markdown +++ b/README.markdown @@ -296,8 +296,8 @@ We now try out merging. Eventually you will want to merge two branches together after the conclusion of work.\ `git merge` allows you to do that. -Git merging works by first switching the branch you want to *into*, and -then running the command to merge the other branch in. +Git merging works by first switching to the branch you want to merge +*into*, and then running the command to merge the other branch in. We now want to merge our `exp1` branch into `master`. First, switch to the `master` branch.