diff --git a/clang-tools-extra/clang-tidy/add_new_check.py b/clang-tools-extra/clang-tidy/add_new_check.py --- a/clang-tools-extra/clang-tidy/add_new_check.py +++ b/clang-tools-extra/clang-tidy/add_new_check.py @@ -219,8 +219,8 @@ with open(filename, 'r') as f: lines = f.readlines() - lineMatcher = re.compile('Improvements to clang-tidy') - nextSectionMatcher = re.compile('Improvements to clang-include-fixer') + lineMatcher = re.compile('New checks') + nextSectionMatcher = re.compile('New aliases') checkerMatcher = re.compile('- New :doc:`(.*)') print('Updating %s...' % filename) @@ -249,12 +249,12 @@ f.write(line) continue - if line.startswith('----'): + if line.startswith('^^^^'): f.write(line) continue if header_found and add_note_here: - if not line.startswith('----'): + if not line.startswith('^^^^'): f.write("""- New :doc:`%s ` check. diff --git a/clang-tools-extra/clang-tidy/rename_check.py b/clang-tools-extra/clang-tidy/rename_check.py --- a/clang-tools-extra/clang-tidy/rename_check.py +++ b/clang-tools-extra/clang-tidy/rename_check.py @@ -176,11 +176,11 @@ for line in lines: if not note_added: - match = re.search('Improvements to clang-tidy', line) + match = re.search('Renamed checks', line) if match: header_found = True elif header_found: - if not line.startswith('----'): + if not line.startswith('^^^^'): f.write(""" - The '%s' check was renamed to :doc:`%s `