From 67d98e6db58b5bf0b3aeaf0a9eda4e731fd48893 Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Thu, 10 Sep 2015 22:02:08 -0500 Subject: [PATCH] Fix the name of the file being created in the example. --- git/determine-the-hash-id-for-a-blob.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/git/determine-the-hash-id-for-a-blob.md b/git/determine-the-hash-id-for-a-blob.md index a596553..2cc9b38 100644 --- a/git/determine-the-hash-id-for-a-blob.md +++ b/git/determine-the-hash-id-for-a-blob.md @@ -4,7 +4,7 @@ Git's `hash-object` command can be used to determine what hash id will be used by git when creating a blob in its internal file system. ```bash -$ echo 'Hello, world!' > hello-world +$ echo 'Hello, world!' > hola $ git hash-object hola af5626b4a114abcb82d63db7c8082c3c4756e51b ```