summaryrefslogtreecommitdiffstats
path: root/base/tuple.h
diff options
context:
space:
mode:
authordeanm@google.com <deanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-08-21 10:58:08 +0000
committerdeanm@google.com <deanm@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-08-21 10:58:08 +0000
commit458711987f6eb0cade8296c2b067c465f11099a9 (patch)
tree11117b5cb9e5264a189e9fac247a3f4d6b94cf4b /base/tuple.h
parent8b99e93fe8840dd00a92e0dc46d6790484c9d6b9 (diff)
downloadchromium_src-458711987f6eb0cade8296c2b067c465f11099a9.zip
chromium_src-458711987f6eb0cade8296c2b067c465f11099a9.tar.gz
chromium_src-458711987f6eb0cade8296c2b067c465f11099a9.tar.bz2
A small fixup to a comment that was over 80 cols.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1149 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/tuple.h')
-rw-r--r--base/tuple.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/base/tuple.h b/base/tuple.h
index 6222a41..1b4b36a 100644
--- a/base/tuple.h
+++ b/base/tuple.h
@@ -59,9 +59,9 @@ struct TupleTraits<P&> {
// function objects that need to take an arbitrary number of parameters; see
// RunnableMethod and IPC::MessageWithTuple.
//
-// Tuple0 is supplied to act as a 'void' type. It can be used, for example, when
-// dispatching to a function that accepts no arguments (see the Dispatchers
-// below).
+// Tuple0 is supplied to act as a 'void' type. It can be used, for example,
+// when dispatching to a function that accepts no arguments (see the
+// Dispatchers below).
// Tuple1<A> is rarely useful. One such use is when A is non-const ref that you
// want filled by the dispatchee, and the tuple is merely a container for that
// output (a "tier"). See MakeRefTuple and its usages.