diff options
author | Bernhard Reutner-Fischer <aldot@gcc.gnu.org> | 2024-02-29 17:52:17 +0100 |
---|---|---|
committer | Bernhard Reutner-Fischer <aldot@gcc.gnu.org> | 2024-03-01 16:21:46 +0100 |
commit | 1e74ce8983fd4926903537414b8b37777af1ae54 (patch) | |
tree | f7c6ddab160c45d9b0f02c06f7884fb550929065 /contrib | |
parent | b5377928a2a5cd2a79eda59e2eba7d0511bf7566 (diff) | |
download | gcc-1e74ce8983fd4926903537414b8b37777af1ae54.zip gcc-1e74ce8983fd4926903537414b8b37777af1ae54.tar.gz gcc-1e74ce8983fd4926903537414b8b37777af1ae54.tar.bz2 |
contrib: mklog: Use present tense in ChangeLog
contrib/ChangeLog:
* mklog.py: Use present tense in ChangeLog.
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/mklog.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/mklog.py b/contrib/mklog.py index d764fb4..7d8d554 100755 --- a/contrib/mklog.py +++ b/contrib/mklog.py @@ -277,7 +277,7 @@ def generate_changelog(data, no_functions=False, fill_pr_titles=False, # it used to be path.source_file[2:] relative_path = get_rel_path_if_prefixed(file.source_file[2:], changelog) - out = append_changelog_line(out, relative_path, 'Moved to...') + out = append_changelog_line(out, relative_path, 'Move to...') new_path = get_rel_path_if_prefixed(file.target_file[2:], changelog) out += f'\t* {new_path}: ...here.\n' |