From 9faada6d332385cf3f3fd60daf8d7259523cb742 Mon Sep 17 00:00:00 2001 From: Nicholas Ormrod Date: Wed, 29 Oct 2014 13:16:38 -0700 Subject: [PATCH] Fix spelling mistakes 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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/folly/Optional.h b/folly/Optional.h index dcc184aa..3ff4c67f 100644 --- a/folly/Optional.h +++ b/folly/Optional.h @@ -338,7 +338,7 @@ bool operator>=(const Optional& a, const Optional& b) { return !(a < b); } -// To supress comparability of Optional with T, despite implicit conversion. +// Suppress comparability of Optional with T, despite implicit conversion. template bool operator< (const Optional&, const V& other) = delete; template bool operator<=(const Optional&, const V& other) = delete; template bool operator>=(const Optional&, const V& other) = delete; -- 2.34.1