From 1dc1171f1c95696c36bbce5ebde10cbdc073e2c7 Mon Sep 17 00:00:00 2001 From: zzak Date: Sat, 5 Oct 2013 23:39:32 +0000 Subject: [PATCH] * lib/webrick.rb: [DOC] fix grammar in WEBrick overview [Fixes GH-413] Based on patch by @chastell https://github.com/ruby/ruby/pull/413 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@43150 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ lib/webrick.rb | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 5048588087..625b1c5065 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Sun Oct 6 08:37:39 2013 Zachary Scott + + * lib/webrick.rb: [DOC] fix grammar in WEBrick overview [Fixes GH-413] + Based on patch by @chastell https://github.com/ruby/ruby/pull/413 + Sat Oct 5 11:21:01 2013 Aaron Pfeifer * thread.c (terminate_atfork_i): fix locking mutexes not unlocked in diff --git a/lib/webrick.rb b/lib/webrick.rb index 765efcba03..fd8522a6c5 100644 --- a/lib/webrick.rb +++ b/lib/webrick.rb @@ -42,7 +42,7 @@ # res.body = 'Hello, world!' # end # -# Remember that server.mount_proc must server.start. +# Remember that +server.mount_proc+ must precede +server.start+. # # == Servlets #