Fix spelling mistakes
authorNicholas Ormrod <njormrod@fb.com>
Wed, 29 Oct 2014 20:16:38 +0000 (13:16 -0700)
committerdcsommer <dcsommer@fb.com>
Wed, 29 Oct 2014 23:08:15 +0000 (16:08 -0700)
Summary: @override-unit-failures

Test Plan: n/a

Reviewed By: rhysparry@fb.com

Subscribers: sdwilsh, njormrod, folly-diffs@

FB internal diff: D1644139

Tasks: 5486739

Signature: t1:1644139:1414553949:626fdca07a583c3d5017abe19408a5e6f6d7674a

folly/Optional.h

index dcc184aa585eafb0022dc0715580cb44696e59c6..3ff4c67f107f93f3d91188a8304eefff511c9c25 100644 (file)
@@ -338,7 +338,7 @@ bool operator>=(const Optional<V>& a, const Optional<V>& b) {
   return !(a < b);
 }
 
-// To supress comparability of Optional<T> with T, despite implicit conversion.
+// Suppress comparability of Optional<T> with T, despite implicit conversion.
 template<class V> bool operator< (const Optional<V>&, const V& other) = delete;
 template<class V> bool operator<=(const Optional<V>&, const V& other) = delete;
 template<class V> bool operator>=(const Optional<V>&, const V& other) = delete;