s/path/repository-path/ in 'got init' usage and docs
diff --git a/got/got.1 b/got/got.1
index d3e564d..50fbe74 100644
--- a/got/got.1
+++ b/got/got.1
@@ -60,9 +60,9 @@ The commands for
.Nm
are as follows:
.Bl -tag -width checkout
-.It Cm init Ar path
+.It Cm init Ar repository-path
Create a new empty repository at the specified
-.Ar path .
+.Ar repository-path .
.Pp
After
.Cm got init ,
diff --git a/got/got.c b/got/got.c
index 90f2c55..5d3cf66 100644
--- a/got/got.c
+++ b/got/got.c
@@ -273,7 +273,7 @@ apply_unveil(const char *repo_path, int repo_read_only,
__dead static void
usage_init(void)
{
- fprintf(stderr, "usage: %s init path\n", getprogname());
+ fprintf(stderr, "usage: %s init repository-path\n", getprogname());
exit(1);
}