summaryrefslogtreecommitdiffstats
path: root/base/callback.h
diff options
context:
space:
mode:
Diffstat (limited to 'base/callback.h')
-rw-r--r--base/callback.h2
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.