summaryrefslogtreecommitdiffstats
path: root/printing
diff options
context:
space:
mode:
authorthestig <thestig@chromium.org>2015-11-23 12:18:11 -0800
committerCommit bot <commit-bot@chromium.org>2015-11-23 20:19:14 +0000
commit259626c7ca1971bca226343df8d88c2b44530158 (patch)
tree1db5105ff09e66497ef918cd024b8a87bab690bf /printing
parent7367b626db3f63c3a8dd6720ffc7e4eeac180d38 (diff)
downloadchromium_src-259626c7ca1971bca226343df8d88c2b44530158.zip
chromium_src-259626c7ca1971bca226343df8d88c2b44530158.tar.gz
chromium_src-259626c7ca1971bca226343df8d88c2b44530158.tar.bz2
Cleanup: Correctly spell success(ful).
TBR=brettw@chromium.org NOPRESUBMIT=true Review URL: https://codereview.chromium.org/1469783002 Cr-Commit-Position: refs/heads/master@{#361166}
Diffstat (limited to 'printing')
-rw-r--r--printing/backend/print_backend_cups.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/printing/backend/print_backend_cups.cc b/printing/backend/print_backend_cups.cc
index 58ae20f..2b1033e 100644
--- a/printing/backend/print_backend_cups.cc
+++ b/printing/backend/print_backend_cups.cc
@@ -4,8 +4,6 @@
#include "printing/backend/print_backend.h"
-#include "build/build_config.h"
-
#include <dlfcn.h>
#include <errno.h>
#include <pthread.h>
@@ -269,7 +267,8 @@ base::FilePath PrintBackendCUPS::GetPPD(const char* name) {
// here.
// Note: After looking at CUPS sources, it looks like non-blocking
// connection will timeout after 10 seconds of no data period. And it will
- // return the same way as if data was completely and sucessfully downloaded.
+ // return the same way as if data was completely and successfully
+ // downloaded.
HttpConnectionCUPS http(print_server_url_, cups_encryption_);
http.SetBlocking(blocking_);
ppd_file_path = cupsGetPPD2(http.http(), name);