Use @generated in generated files
@generated is used by various tools to identify generated files. For example, Phabricator will not display diffs in generated files by default. Reviewed by: gjb Sponsored by: The FreeBSD Foundation Differential Revision: https://reviews.freebsd.org/D28446
This commit is contained in:
parent
e11aaf5a76
commit
fbc1409c73
6 changed files with 6 additions and 6 deletions
|
|
@ -20,7 +20,7 @@ def cleanTocFile(language, tocCounter):
|
|||
tocFile.truncate(0)
|
||||
|
||||
def appendCommendAndTitle(language, tocCounter, tocContent):
|
||||
toc = "// Code generated by the FreeBSD Documentation toolchain. DO NOT EDIT.\n"
|
||||
toc = "// Code @" + "generated by the FreeBSD Documentation toolchain. DO NOT EDIT.\n"
|
||||
toc += "// Please don't change this file manually but run `make` to update it.\n"
|
||||
toc += "// For more information, please read the FreeBSD Documentation Project Primer\n\n"
|
||||
toc += "[.toc]\n"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue