diff options
author | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-04 20:28:56 +0000 |
---|---|---|
committer | jhawkins@chromium.org <jhawkins@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-04 20:28:56 +0000 |
commit | cf7c614663817b1532652e5687028a9069469886 (patch) | |
tree | 0f68396c9e7bffaaaf3ee73c5e7747addb2cf6a9 /base/callback.h | |
parent | df5536d0084ac6d27d9219202cb07b9248760330 (diff) | |
download | chromium_src-cf7c614663817b1532652e5687028a9069469886.zip chromium_src-cf7c614663817b1532652e5687028a9069469886.tar.gz chromium_src-cf7c614663817b1532652e5687028a9069469886.tar.bz2 |
base::Bind: More converts, mostly in WebUI.
BUG=none
TEST=none
R=csilv@chromium.org,ajwong@chromium.org
Review URL: http://codereview.chromium.org/8113025
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@103978 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/callback.h')
-rw-r--r-- | base/callback.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/callback.h b/base/callback.h index 03abb4b..7579cef 100644 --- a/base/callback.h +++ b/base/callback.h @@ -25,7 +25,7 @@ // with the Bind() function in bind.h, they provide a type-safe method for // performing currying of arguments, and creating a "closure." // -// In programing languages, a closure is a first-class function where all its +// In programming languages, a closure is a first-class function where all its // parameters have been bound (usually via currying). Closures are well // suited for representing, and passing around a unit of delayed execution. // They are used in Chromium code to schedule tasks on different MessageLoops. |