diff --git a/doc/en/Gtk/TreeView.xml b/doc/en/Gtk/TreeView.xml
index ab7ccf5e3..0db78b030 100644
--- a/doc/en/Gtk/TreeView.xml
+++ b/doc/en/Gtk/TreeView.xml
@@ -19,13 +19,21 @@
Model/View/Controller design and consists of four major parts:
-
- , the tree view widget
+
+ , the tree view widget
+
+
-
- , the view column.
- - The cell renderers (
- and others).
+
+ , the view column.
+
+
-
- , the model interface.
+ The cell renderers ( and others).
+
+ -
+ , the model interface.
+
The View is composed of the first three, while the last is the
@@ -76,7 +84,7 @@ public class TreeViewSample {
tv.AppendColumn ("Data", new CellRendererText (), "text", 1);
sw.Add (tv);
- sw.Show();
+ sw.Show ();
win.ShowAll ();
Application.Run ();
}