From 2c61bf8842e6d4a588a888f8ec1ece32f2751724 Mon Sep 17 00:00:00 2001 From: Fedor Mutiev Date: Sun, 15 Jun 2025 00:21:47 +0500 Subject: [PATCH] Update gitcore-tutorial.adoc Replace ambiguous asterisk in SYNOPSIS of gitcore-tutorial The SYNOPSIS section previously used a bare asterisk (`git *`) as a placeholder for Git commands. This notation may confuse readers, as the asterisk is widely interpreted in shell contexts as a wildcard, or in regex as repetition. Replacing it with a more explicit and conventional placeholder (`git [...]`) improves clarity without loss of generality. This change aims to make the tutorial more accessible to newcomers while aligning with common documentation practices. --- Documentation/gitcore-tutorial.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Documentation/gitcore-tutorial.adoc b/Documentation/gitcore-tutorial.adoc index 2122aeb9769157..300bb5af607065 100644 --- a/Documentation/gitcore-tutorial.adoc +++ b/Documentation/gitcore-tutorial.adoc @@ -7,7 +7,7 @@ gitcore-tutorial - A Git core tutorial for developers SYNOPSIS -------- -git * +git [...] DESCRIPTION -----------