From 6d3f5b93c41a4cfaecf9888c2368c70bf26f415e Mon Sep 17 00:00:00 2001 From: Igor Demin Date: Tue, 17 Dec 2024 14:58:13 +0100 Subject: [PATCH] Update changelog.main.kts comment (typos) --- tools/changelog.main.kts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/changelog.main.kts b/tools/changelog.main.kts index c88259a131..a9b851fab5 100644 --- a/tools/changelog.main.kts +++ b/tools/changelog.main.kts @@ -1,15 +1,15 @@ /** * Script for creating a changelog. Call: * ``` - * kotlin changelog.main.kts v1.7.0-dev555 + * kotlin changelog.main.kts v1.7.0+dev555 * ``` * or: * ``` - * kotlin changelog.main.kts v1.7.0..v1.7.1-dev555 + * kotlin changelog.main.kts v1.7.0..v1.7.1+dev555 * ``` * where: - * v1.7.0-dev555 - the tag/branch of the version. The previous version will be read from CHANGELOG.md - * v1.7.0..1.7.1-dev555 - the range of tag/branches for the changelog + * v1.7.0+dev555 - the tag/branch of the version. The previous version will be read from CHANGELOG.md + * v1.7.0..v1.7.1+dev555 - the range of tag/branches for the changelog * * It modifies CHANGELOG.md and adds new changes between the last version in CHANGELOG.md and the specified version. *