$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r62406 - trunk/boost/graph
From: jewillco_at_[hidden]
Date: 2010-06-03 11:47:00
Author: jewillco
Date: 2010-06-03 11:46:58 EDT (Thu, 03 Jun 2010)
New Revision: 62406
URL: http://svn.boost.org/trac/boost/changeset/62406
Log:
Fixed comment; fixes #4285
Text files modified: 
   trunk/boost/graph/graph_traits.hpp |     2 +-                                      
   1 files changed, 1 insertions(+), 1 deletions(-)
Modified: trunk/boost/graph/graph_traits.hpp
==============================================================================
--- trunk/boost/graph/graph_traits.hpp	(original)
+++ trunk/boost/graph/graph_traits.hpp	2010-06-03 11:46:58 EDT (Thu, 03 Jun 2010)
@@ -67,7 +67,7 @@
         return detail::is_directed(Cat());
     }
 
-    /** Return false if the given graph is undirected. */
+    /** Return true if the given graph is undirected. */
     template <typename Graph>
     bool is_undirected(const Graph& g) {
         return !is_directed(g);