From 20c0af8b7dd823c71f0a0d055d0877912daabb79 Mon Sep 17 00:00:00 2001 From: Corey Farwell Date: Mon, 31 Aug 2015 17:38:23 -0400 Subject: [PATCH] Update spec link pattern to reflect `impl` signature changes Relevant to #7416 --- python/tidy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/tidy.py b/python/tidy.py index 9ea9de24f30..418060fafcc 100644 --- a/python/tidy.py +++ b/python/tidy.py @@ -313,7 +313,7 @@ def check_spec(file_name, contents): raise StopIteration file_name = os.path.relpath(os.path.splitext(file_name)[0], base_path) patt = re.compile("^\s*\/\/.+") - pattern = "impl<'a> %sMethods for &'a %s {" % (file_name, file_name) + pattern = "impl %sMethods for %s {" % (file_name, file_name) contents = contents.splitlines(True) brace_count = 0 in_impl = False