changeset 2258:2c8c10f00518

Development guide: fixed quotes encoding in <programlisting>.
author Sergey Kandaurov <pluknet@nginx.com>
date Thu, 18 Oct 2018 19:18:08 +0300
parents 8cef5ef98336
children 9644ecb67081
files xml/en/docs/dev/development_guide.xml
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/xml/en/docs/dev/development_guide.xml
+++ b/xml/en/docs/dev/development_guide.xml
@@ -1964,14 +1964,14 @@ handler to log client and server address
 
 <programlisting>
 /* specify what is currently done */
-log->action = "sending mp4 to client”;
+log->action = "sending mp4 to client";
 
 /* error and debug log */
 ngx_log_error(NGX_LOG_INFO, c->log, 0, "client prematurely
-              closed connection”);
+              closed connection");
 
 ngx_log_debug2(NGX_LOG_DEBUG_HTTP, mp4->file.log, 0,
-               "mp4 start:%ui, length:%ui”, mp4->start, mp4->length);
+               "mp4 start:%ui, length:%ui", mp4->start, mp4->length);
 </programlisting>
 
 <para>
@@ -1981,7 +1981,7 @@ The example above results in log entries
 
 <programlisting>
 2016/09/16 22:08:52 [info] 17445#0: *1 client prematurely closed connection while
-sending mp4 to client, client: 127.0.0.1, server: , request: "GET /file.mp4 HTTP/1.1”
+sending mp4 to client, client: 127.0.0.1, server: , request: "GET /file.mp4 HTTP/1.1"
 2016/09/16 23:28:33 [debug] 22140#0: *1 mp4 start:0, length:10000
 </programlisting>