diff options
author | Lukasz Kokot <lukasz@kumojin.com> | 2018-10-28 20:55:22 -0400 |
---|---|---|
committer | Lukasz Kokot <lukasz@kumojin.com> | 2018-10-28 20:59:41 -0400 |
commit | 190bfd6aa60022afd0ef830342cfb07e33c45f37 (patch) | |
tree | 576563440f09797fe1b3411009a415840ba8a134 /_examples/storage/README.md | |
parent | 414b0276285a2bb91ad16ed9c0c147ad6286df70 (diff) | |
download | go-git-190bfd6aa60022afd0ef830342cfb07e33c45f37.tar.gz |
Fix spelling and grammar in docs and example
Signed-off-by: Lukasz Kokot <lukasz@kumojin.com>
Diffstat (limited to '_examples/storage/README.md')
-rw-r--r-- | _examples/storage/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/_examples/storage/README.md b/_examples/storage/README.md index fc72e6f..b002515 100644 --- a/_examples/storage/README.md +++ b/_examples/storage/README.md @@ -6,7 +6,7 @@ ### and what this means ... -*git* has as very well defined storage system, the `.git` directory, present on any repository. This is the place where `git` stores al the [`objects`](https://git-scm.com/book/en/v2/Git-Internals-Git-Objects), [`references`](https://git-scm.com/book/es/v2/Git-Internals-Git-References) and [`configuration`](https://git-scm.com/docs/git-config#_configuration_file). This information is stored in plain files. +*git* has a very well defined storage system, the `.git` directory, present on any repository. This is the place where `git` stores all the [`objects`](https://git-scm.com/book/en/v2/Git-Internals-Git-Objects), [`references`](https://git-scm.com/book/es/v2/Git-Internals-Git-References) and [`configuration`](https://git-scm.com/docs/git-config#_configuration_file). This information is stored in plain files. Our original **go-git** version was designed to work in memory, some time after we added support to read the `.git`, and now we have added support for fully customized [storages](https://godoc.org/gopkg.in/src-d/go-git.v4/storage#Storer). |