Documentation: minor AsciiDoc mark-up fixes.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
diff --git a/Documentation/git-daemon.txt b/Documentation/git-daemon.txt
index efdcdad..99e47c9 100644
--- a/Documentation/git-daemon.txt
+++ b/Documentation/git-daemon.txt
@@ -248,16 +248,16 @@
 Repositories can still be accessed by hostname though, assuming
 they correspond to these IP addresses.
 
-
-To enable `git-archive --remote` and disable `git-fetch` against
-a repository, have the following in the configuration file in the
-repository (that is the file 'config' next to 'HEAD', 'refs' and
-'objects').
+selectively enable/disable services per repository::
+	To enable `git-archive --remote` and disable `git-fetch` against
+	a repository, have the following in the configuration file in the
+	repository (that is the file 'config' next to 'HEAD', 'refs' and
+	'objects').
 +
 ----------------------------------------------------------------
-[daemon]
-	uploadpack = false
-	uploadarchive = true
+	[daemon]
+		uploadpack = false
+		uploadarchive = true
 ----------------------------------------------------------------