diff --git a/doc/en/Gtk/TreeView.xml b/doc/en/Gtk/TreeView.xml
index 78822655a..0762213dc 100644
--- a/doc/en/Gtk/TreeView.xml
+++ b/doc/en/Gtk/TreeView.xml
@@ -1182,12 +1182,23 @@ public class TreeViewDemo {
- To be added
- a
- a
- a
- a
- To be added
+ Adds a with a specific column title and attributes.
+ column title
+ cell renderer
+ attributes
+ The appended
+
+ This function is used to append a new subclass with specific attributes to the .
+
+The following code sample will append a new to an existing and use column 0 from the as the text to render.
+
+
+
+CellRendererText text = new CellRendererText ();
+tree_view.AppendColumn ("title", text, "text", 0);
+
+
+
@@ -1241,9 +1252,10 @@ public class TreeViewDemo {
- To be added
- a
- To be added
+ Expands the treeview so the Path specified is visible.
+
+ to expand to.
+