diff options
author | Lukas Smith <lsmith@php.net> | 2007-11-24 13:55:20 (GMT) |
---|---|---|
committer | Lukas Smith <lsmith@php.net> | 2007-11-24 13:55:20 (GMT) |
commit | 5ccca2143e19028d91f51adf727d45953d61256f (patch) | |
tree | a8bb9a82cc5661df5e4e8e8a05ae14d572c21f82 /CODING_STANDARDS | |
parent | 60b1395330c5d63fb4365842f812b98105d3175e (diff) | |
download | php-5ccca2143e19028d91f51adf727d45953d61256f.tar.gz |
- fixed unexpected emphasis in reST parsing due to use of *
Diffstat (limited to 'CODING_STANDARDS')
-rw-r--r-- | CODING_STANDARDS | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CODING_STANDARDS b/CODING_STANDARDS index 27bcb10..5fe00dd 100644 --- a/CODING_STANDARDS +++ b/CODING_STANDARDS @@ -16,7 +16,7 @@ Code Implementation 1. Functions that are given pointers to resources should not free them -For instance, function int mail(char *to, char *from) should NOT free +For instance, ``function int mail(char *to, char *from)`` should NOT free to and/or from. Exceptions: |