Fix various spelling errors still found in code Two upstream PRs remain that have...
authorOtto Kekäläinen <otto@debian.org>
Thu, 3 Mar 2022 02:13:18 +0000 (18:13 -0800)
committerOtto Kekäläinen <otto@debian.org>
Sun, 28 May 2023 06:16:42 +0000 (23:16 -0700)
Gbp-Pq: Name fix-spelling-rocksdb.patch

storage/rocksdb/rocksdb/db/external_sst_file_ingestion_job.cc
storage/rocksdb/rocksdb/include/rocksdb/cache.h

index 4cec5d3767c70b8ba07a162fbe5bd63329f90617..86aec50c002c6669c75ffbdee1d3f6d0f1798d4d 100644 (file)
@@ -46,7 +46,7 @@ Status ExternalSstFileIngestionJob::Prepare(
             TablePropertiesCollectorFactory::Context::kUnknownColumnFamily &&
         f.cf_id != cfd_->GetID()) {
       return Status::InvalidArgument(
-          "External file column family id dont match");
+          "External file column family id don't match");
     }
   }
 
@@ -646,7 +646,7 @@ Status ExternalSstFileIngestionJob::AssignGlobalSeqnoForIngestedFile(
     return Status::InvalidArgument("Global seqno is required, but disabled");
   } else if (file_to_ingest->global_seqno_offset == 0) {
     return Status::InvalidArgument(
-        "Trying to set global seqno for a file that dont have a global seqno "
+        "Trying to set global seqno for a file that don't have a global seqno "
         "field");
   }
 
index 77ddf525d0b154ed7b41969135b3a10790d174c8..ee27538cfcd95d6bc9e2bbf20d9b000b92a8acdf 100644 (file)
@@ -60,7 +60,7 @@ struct LRUCacheOptions {
   // If greater than zero, the LRU list will be split into a high-pri
   // list and a low-pri list. High-pri entries will be insert to the
   // tail of high-pri list, while low-pri entries will be first inserted to
-  // the low-pri list (the midpoint). This is refered to as
+  // the low-pri list (the midpoint). This is referred to as
   // midpoint insertion strategy to make entries never get hit in cache
   // age out faster.
   //