From 5ccec2e85f04c44ed9b34f83e3140d2cc060f69f Mon Sep 17 00:00:00 2001 From: Sebastien Helleu Date: Sun, 22 Dec 2013 18:37:29 +0100 Subject: [PATCH] doc: update example of copyright in source file (developer's guide) --- doc/en/weechat_dev.en.txt | 6 ++---- 1 file 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 * * 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 . */ - -/* - * weechat.c: core functions for WeeChat - */ ---- [[coding_c_style]]