summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2013-12-22 18:37:29 +0100
committerSebastien Helleu <flashcode@flashtux.org>2013-12-22 18:37:29 +0100
commit5ccec2e85f04c44ed9b34f83e3140d2cc060f69f (patch)
tree6608528ebb6e083c3b8a4413cefc35ce5a39edfa
parent929a7906c45231bba06f835714ce85297cd82803 (diff)
downloadweechat-5ccec2e85f04c44ed9b34f83e3140d2cc060f69f.zip
doc: update example of copyright in source file (developer's guide)
-rw-r--r--doc/en/weechat_dev.en.txt6
1 files changed, 2 insertions, 4 deletions
diff --git a/doc/en/weechat_dev.en.txt b/doc/en/weechat_dev.en.txt
index 44ef4be82..b0a978c99 100644
--- a/doc/en/weechat_dev.en.txt
+++ b/doc/en/weechat_dev.en.txt
@@ -322,6 +322,8 @@ Translations for WeeChat and plugins are done with gettext, files are in 'po/' d
[source,C]
----
/*
+ * weechat.c - core functions for WeeChat
+ *
* Copyright (C) 2013 Your Name <your@email.com>
*
* This file is part of WeeChat, the extensible chat client.
@@ -339,10 +341,6 @@ Translations for WeeChat and plugins are done with gettext, files are in 'po/' d
* You should have received a copy of the GNU General Public License
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-
-/*
- * weechat.c: core functions for WeeChat
- */
----
[[coding_c_style]]