diff --git a/third-party/folly/src/folly/container/F14Map.h b/third-party/folly/src/folly/container/F14Map.h index 5d92d22c861dfe..44bf425b766f53 100644 --- a/third-party/folly/src/folly/container/F14Map.h +++ b/third-party/folly/src/folly/container/F14Map.h @@ -1006,7 +1006,7 @@ class F14BasicMap { * This function is provided for compliance with C++'s requirements for * hashtables, but is no better than a simple `reserve` call for F14. * - * @param bucketCapcity The desired capacity across all buckets. + * @param bucketCapacity The desired capacity across all buckets. */ void rehash(std::size_t bucketCapacity) { // The standard's rehash() requires understanding the max load factor, diff --git a/third-party/folly/src/folly/container/F14Set.h b/third-party/folly/src/folly/container/F14Set.h index b3aaaef884f4ff..b5ca50374bdd29 100644 --- a/third-party/folly/src/folly/container/F14Set.h +++ b/third-party/folly/src/folly/container/F14Set.h @@ -711,7 +711,7 @@ class F14BasicSet { * This function is provided for compliance with C++'s requirements for * hashtables, but is no better than a simple `reserve` call for F14. * - * @param bucketCapcity The desired capacity across all buckets. + * @param bucketCapacity The desired capacity across all buckets. * * @methodset Hash policy */