diff --git a/Doc/changelog.docu b/Doc/changelog.docu
index 716ce284..ce4a7404 100644
--- a/Doc/changelog.docu
+++ b/Doc/changelog.docu
@@ -13,7 +13,9 @@
Property System: Get rid of the OM_FORCE_STATIC_CAST defines. We use the type ids to check if the cast is valid or not. This will add more type safety.
Default Traits: Added DefaultTraitsDouble as a version of the default traits that uses double precision for positions and normals as well as float for colors.
Default Mesh Types: Added typdefs for a Triangle Mesh and a PolyMesh which use DefaultTraitsDouble and can be used as default mesh type be the user.
-Template Programming Convenience: Added n_elements which returns the number of elements corresponding to the handle type given as template argument. Also added elements and all_elements methods returning ranges of the elements corresponding to the handle type given as template argument.
+Template Programming Convenience: Added n_elements which returns the number of elements corresponding to the handle type given as template argument. Also added elements and all_elements methods returning ranges of the elements corresponding to the handle type given as template argument.
+Smart Handles: Most userfacing functions returning handles should now return smart handles instead. Smart handles know their corresponding mesh and give convenient access to mesh navigation methods.
+Smart Ranges: OpenMesh ranges now provide a few methods that simplify a few calculations. See documentation for more details.
@@ -28,7 +30,7 @@
- Change PropertyManager::operator* to access the property value for mesh properties
- PropertyManager: add hasProperty function
-- PropertyManager rework: The behavior of the PropertyManager has been changed, hoepfully making it more usable. See tutoial.
+
- PropertyManager rework: The behavior of the PropertyManager has been changed, hopefully making it more usable. See tutoial.
IO