diff options
author | Chris Lattner <sabre@nondot.org> | 2007-02-19 03:33:06 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2007-02-19 03:33:06 +0000 |
commit | 8503007331e52abd08d2d79187fee26e6f233cde (patch) | |
tree | 09cff5411c7e5290d75ff25abd1eb07b35dacf47 /llvm/docs/CodingStandards.html | |
parent | da81bf4d3e4080fb8e46942f8f24a8a8996b5c58 (diff) | |
download | bcm5719-llvm-8503007331e52abd08d2d79187fee26e6f233cde.tar.gz bcm5719-llvm-8503007331e52abd08d2d79187fee26e6f233cde.zip |
clarify the 'developed by' line
llvm-svn: 34400
Diffstat (limited to 'llvm/docs/CodingStandards.html')
-rw-r--r-- | llvm/docs/CodingStandards.html | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/llvm/docs/CodingStandards.html b/llvm/docs/CodingStandards.html index fd27985be49..dddd84fc508 100644 --- a/llvm/docs/CodingStandards.html +++ b/llvm/docs/CodingStandards.html @@ -134,7 +134,7 @@ this:</p> // // The LLVM Compiler Infrastructure // -// This file was developed by the LLVM research group and is distributed under +// This file was developed by <whoever started the file> and is distributed under // the University of Illinois Open Source License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// @@ -146,7 +146,9 @@ this:</p> </pre> </div> -<p>A few things to note about this particular format: The "<tt>-*- C++ +<p>A few things to note about this particular format: The 'developed by' line +should be the name of the person or organization who initially contributed the +file. The "<tt>-*- C++ -*-</tt>" string on the first line is there to tell Emacs that the source file is a C++ file, not a C file (Emacs assumes .h files are C files by default). Note that this tag is not necessary in .cpp files. The name of the file is also |