From 70e80c91b6168cdbd9c63cf5ad9c8ba32cf493f1 Mon Sep 17 00:00:00 2001 From: yaphet <4414314+darionyaphet@users.noreply.github.com> Date: Mon, 29 Mar 2021 10:31:11 -0700 Subject: [PATCH] fix typo (#8118) Summary: Pull Request resolved: https://github.com/facebook/rocksdb/pull/8118 Reviewed By: ajkr Differential Revision: D27367488 Pulled By: zhichao-cao fbshipit-source-id: 6ed598c74ab9232f2e56326b3a30476d473699d7 --- file/random_access_file_reader.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/file/random_access_file_reader.h b/file/random_access_file_reader.h index cc931122b..4f39409bb 100644 --- a/file/random_access_file_reader.h +++ b/file/random_access_file_reader.h @@ -38,7 +38,7 @@ FSReadRequest Align(const FSReadRequest& r, size_t alignment); // Otherwise, do nothing and return false. bool TryMerge(FSReadRequest* dest, const FSReadRequest& src); -// RandomAccessFileReader is a wrapper on top of Env::RnadomAccessFile. It is +// RandomAccessFileReader is a wrapper on top of Env::RandomAccessFile. It is // responsible for: // - Handling Buffered and Direct reads appropriately. // - Rate limiting compaction reads.