From 62e4e6151d6fd6121b82913e6db8d349a79bbb93 Mon Sep 17 00:00:00 2001 From: Paul Lee Date: Fri, 6 Feb 2026 18:41:29 -0500 Subject: [PATCH] Typo in week 4 lecture --- lectures/week4/git.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lectures/week4/git.Rmd b/lectures/week4/git.Rmd index 7104c6f..cbe7abc 100644 --- a/lectures/week4/git.Rmd +++ b/lectures/week4/git.Rmd @@ -34,7 +34,7 @@ There are three main reasons to use Git and GitHub. * \underline{Sharing:} GitHub allows us to easily share code! * \underline{Collaborating:} Multiple people make changes to code and keep versions synched. GitHub has a special utility, called a **pull request**, that can be used by anybody to suggest changes to your code. -* \underline{Version control:} Using `git` permits us to keep track of changes, revert back to previous versions, and create **branches** in to test out ideas, then decide if we **merge** with the original. +* \underline{Version control:} Using `git` permits us to keep track of changes, revert back to previous versions, and create **branches** to test out ideas, then decide if we **merge** with the original. # GitHub Repositories