aboutsummaryrefslogtreecommitdiff
path: root/infra/website/content/blog/119_wrong_abstraction.md
diff options
context:
space:
mode:
authorMx Kookie <kookie@spacekookie.de>2020-11-11 15:21:00 +0100
committerMx Kookie <kookie@spacekookie.de>2020-12-21 05:19:49 +0100
commitefd6223f0e76d65676bcff5bdf901de77398e6e0 (patch)
tree660b80d850b26be0052d9363d4dcaae36d229591 /infra/website/content/blog/119_wrong_abstraction.md
parent69eaad1c9f934bccaf7e28529a6b1657345f0184 (diff)
website: abstractions: fixing a typo
Diffstat (limited to '')
-rw-r--r--infra/website/content/blog/119_wrong_abstraction.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/infra/website/content/blog/119_wrong_abstraction.md b/infra/website/content/blog/119_wrong_abstraction.md
index 308e1ad8ffd5..411b7a6c48a0 100644
--- a/infra/website/content/blog/119_wrong_abstraction.md
+++ b/infra/website/content/blog/119_wrong_abstraction.md
@@ -87,9 +87,9 @@ work with. But this is where some problems appeared.
The main reason why I'm writing this more Rustic wrapper around
`libgit2` is to make it easier to determine what the history of a file
-has been. This is pretty simple to find out via the git CLI (`git --
-<your file here>`), but not something that `libgit2` exposes, because
-that's not how git stores data.
+has been. This is pretty simple to find out via the git CLI (`git log
+-- <your file here>`), but not something that `libgit2` exposes,
+because that's not how git stores data.
To git, all data is stored in a key-value store indexed by a SHA1
(soon to be SHA256 I think?) hash reference. That applies to files,