From 2ae27e2e7ff08a31558a4ad78e7229763340b903 Mon Sep 17 00:00:00 2001 From: Jaswinder Singh Date: Sat, 4 Nov 2017 10:15:11 +0530 Subject: [PATCH] 'it' replaced by 'is' in 10th chap, objects section 'it' replaced by 'is' in chapter 10, section 'objects', line 8th, word 4th --- book/10-git-internals/sections/objects.asc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/10-git-internals/sections/objects.asc b/book/10-git-internals/sections/objects.asc index c50cc17cb..9600bf978 100644 --- a/book/10-git-internals/sections/objects.asc +++ b/book/10-git-internals/sections/objects.asc @@ -5,7 +5,7 @@ Git is a content-addressable filesystem. Great. What does that mean? It means that at the core of Git is a simple key-value data store. -What this means it that you can insert any kind of content into a Git repository, for which Git will hand you back a unique key you can use later to retrieve that content. +What this means is that you can insert any kind of content into a Git repository, for which Git will hand you back a unique key you can use later to retrieve that content. As a demonstration, let's look at the plumbing command `git hash-object`, which takes some data, stores it in your `.git/objects` directory (the _object database_), and gives you back the unique key that now refers to that data object.