From 86a7b99324fd1debcc27df3c08eabf7a9081ce6d Mon Sep 17 00:00:00 2001 From: Tobias Pfeiffer Date: Sun, 17 Feb 2013 10:03:44 +0100 Subject: [PATCH] Update src/levels/intro/1.js Fixed a little typo (the all the files) --- src/levels/intro/1.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/levels/intro/1.js b/src/levels/intro/1.js index b6542b22..17f4769f 100644 --- a/src/levels/intro/1.js +++ b/src/levels/intro/1.js @@ -14,7 +14,7 @@ exports.level = { "options": { "markdowns": [ "## Git Commits", - "A commit in a git repository records a snapshot of the all the files in your directory. It\'s like a giant copy and paste, but even better!", + "A commit in a git repository records a snapshot of all the files in your directory. It\'s like a giant copy and paste, but even better!", "", "Git wants to keep commits as lightweight as possible though, so it doesn't just copy the entire directory every time you commit. It actually stores each commit as a set of changes, or a \"delta\", from one version of the repository to the next. That\'s why most commits have a parent commit above them -- you\'ll see this later in our visualizations.", "",