summaryrefslogtreecommitdiff
path: root/doc/en/weechat_dev.en.txt
diff options
context:
space:
mode:
authorSebastien Helleu <flashcode@flashtux.org>2014-02-02 11:10:33 +0100
committerSebastien Helleu <flashcode@flashtux.org>2014-02-02 11:10:33 +0100
commitfcd120fa50ef737d17c94c197cdef06e683435a2 (patch)
tree83d416580c14e9a037d28d13be30fa1f4958ee6c /doc/en/weechat_dev.en.txt
parent092f70aa7ecb812230ec6b63e87f050949aa57d4 (diff)
downloadweechat-fcd120fa50ef737d17c94c197cdef06e683435a2.zip
doc: minor changes in developer's guide
Diffstat (limited to 'doc/en/weechat_dev.en.txt')
-rw-r--r--doc/en/weechat_dev.en.txt18
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/en/weechat_dev.en.txt b/doc/en/weechat_dev.en.txt
index 6dc97a865..d864d65b8 100644
--- a/doc/en/weechat_dev.en.txt
+++ b/doc/en/weechat_dev.en.txt
@@ -24,7 +24,7 @@ This manual documents WeeChat internals:
* coding rules
* core internals
* plugin internals
-* how to contribute to WeeChat
+* how to contribute to WeeChat.
[[repository]]
== Repository
@@ -285,9 +285,9 @@ Documentation files:
| doc/ | Documentation
| asciidoc.conf | Asciidoc configuration file (some macros)
| asciidoc.css | Asciidoc style
-| docgen.py | Python script to build files in "autogen/" directory (see below)
+| docgen.py | Python script to build files in 'autogen/' directory (see below)
| XX/ | Documentation for language XX (languages: en, fr, de, it, ...)
-| weechat.1.XX.txt | Man page
+| weechat.1.XX.txt | Man page (`man weechat`)
| weechat_quickstart.XX.txt | Quickstart guide
| weechat_user.XX.txt | User's guide
| weechat_faq.XX.txt | FAQ
@@ -295,7 +295,7 @@ Documentation files:
| weechat_scripting.XX.txt | Scripting guide
| weechat_tester.XX.txt | Tester's guide
| weechat_dev.XX.txt | Developer's guide (this document)
-| weechat_relay_protocol.XX.txt | Relay protocol
+| weechat_relay_protocol.XX.txt | Relay protocol (for remote interfaces)
| cmdline_options.XX.txt | Command-line options (file included in man page and user's guide)
| autogen/ | Files auto-built with script docgen.py
| user/ | Files auto-built for user's guide (do *NEVER* update manually!)
@@ -499,13 +499,13 @@ else
----
switch (string[0])
{
- case 'A': /* first case */
+ case 'A': /* first case */
foo ("abc", "def");
break;
- case 'B': /* second case */
+ case 'B': /* second case */
bar (1, 2, 3);
break;
- default: /* other cases */
+ default: /* other cases */
baz ();
break;
}
@@ -533,7 +533,7 @@ struct t_hook_fd *new_hook_fd;
new_hook_fd = malloc (sizeof (*new_hook_fd));
----
-* This lisp code can be used in your '~/.emacs.el' to indent properly if you are
+* This Lisp code can be used in your '~/.emacs.el' to indent properly if you are
using Emacs as text editor:
[source,lisp]
@@ -953,7 +953,7 @@ core: update Japanese translations (patch #7783)
Gettext files are in directory 'po/'.
If you want to initialize a new language, use command `msginit`. For example to
-create a dutch empty file:
+create a file which is ready to translate to Dutch:
----
$ cd po