From e25657f49251bf77058d9276b93fd05ffe18d4d9 Mon Sep 17 00:00:00 2001 From: Madelaine Boyd Date: Mon, 14 Nov 2016 08:07:26 -0800 Subject: [PATCH] grammar nits. Summary: fewer is used for a countable set of objects. Reviewed By: ricklavoie Differential Revision: D4169550 fbshipit-source-id: a6f2e1bf2437e57970e2696ad42a85171c6f74bf --- hphp/tools/type-info-gens/gen-type-scanners.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hphp/tools/type-info-gens/gen-type-scanners.cpp b/hphp/tools/type-info-gens/gen-type-scanners.cpp index 15197015d86..c9e7431a79b 100644 --- a/hphp/tools/type-info-gens/gen-type-scanners.cpp +++ b/hphp/tools/type-info-gens/gen-type-scanners.cpp @@ -662,7 +662,7 @@ Generator::Generator(const std::string& filename, bool skip) { // Before beginning the actual layout generation, we can speed things up a bit // by marking any types which we know are always pointer followable. This will - // let us reach the fixed point in less iterations. + // let us reach the fixed point in fewer iterations. for (const auto& indexed : m_indexed_types) { // Indexed types just for scanning are never pointer followable (because // they're not actually heap allocated). @@ -691,7 +691,7 @@ Generator::Generator(const std::string& filename, bool skip) { // If this indexed type is always going to be a complete conservative scan, // than we're always going to have a non-trivial action for its scanner, so - // its always pointer followable. + // it's always pointer followable. if (indexed.conservative && indexed.conservative_guards.empty()) { makePtrFollowable(*indexed.type); } -- 2.11.4.GIT