From c1b8a6945da68f67140b193eccf20e223e521184 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20Kj=C3=A4ll?= Date: Sat, 15 Jul 2023 17:15:19 +0200 Subject: [PATCH] fix typo, create_repsitory -> create_repository --- docs/guides/101-samples/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guides/101-samples/index.md b/docs/guides/101-samples/index.md index cdf4a2d9b8..ed3cb0cc33 100644 --- a/docs/guides/101-samples/index.md +++ b/docs/guides/101-samples/index.md @@ -142,7 +142,7 @@ int error = git_clone(&repo, url, path, &clone_opts);

Clone (Custom repo and remote)

~~~c -int create_repsitory(git_repository **out, const char *path, int bare, void *payload) +int create_repository(git_repository **out, const char *path, int bare, void *payload) { int error;