Merge pull request #3442 from galdiolo/patch-4

[ci skip] fix path for individual news item
diff --git a/user_guide_src/source/tutorial/news_section.rst b/user_guide_src/source/tutorial/news_section.rst
index 3f4c9f0..80938de 100644
--- a/user_guide_src/source/tutorial/news_section.rst
+++ b/user_guide_src/source/tutorial/news_section.rst
@@ -143,9 +143,11 @@
 
 ::
 
+	<h2><?php echo $title ?></h2>
+	
 	<?php foreach ($news as $news_item): ?>
 
-		<h2><?php echo $news_item['title'] ?></h2>
+		<h3><?php echo $news_item['title'] ?></h3>
 		<div class="main">
 			<?php echo $news_item['text'] ?>
 		</div>
@@ -196,7 +198,7 @@
 Routing
 -------
 
-Because of the wildcard routing rule created earlier, you need need an
+Because of the wildcard routing rule created earlier, you need an
 extra route to view the controller that you just made. Modify your
 routing file (application/config/routes.php) so it looks as follows.
 This makes sure the requests reaches the news controller instead of