From e8d5a248155268d5d5473a45c505fa193d31741a Mon Sep 17 00:00:00 2001 From: yxj25245 Date: Wed, 15 Jul 2020 09:21:57 -0700 Subject: [PATCH] Fix typo in ThreadData comment (#7131) Summary: Fix typo in ThreadData comment Pull Request resolved: https://github.com/facebook/rocksdb/pull/7131 Reviewed By: riversand963 Differential Revision: D22543135 Pulled By: jay-zhuang fbshipit-source-id: 39c9d0e8cd5a364af9a2f05fd3783e8482dea976 --- util/thread_local.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util/thread_local.cc b/util/thread_local.cc index 9fa16f609..0945b606b 100644 --- a/util/thread_local.cc +++ b/util/thread_local.cc @@ -29,7 +29,7 @@ class StaticMeta; // global StaticMeta singleton. So if we instantiated 3 ThreadLocalPtr // instances, each thread will have a ThreadData with a vector of size 3: // --------------------------------------------------- -// | | instance 1 | instance 2 | instnace 3 | +// | | instance 1 | instance 2 | instance 3 | // --------------------------------------------------- // | thread 1 | void* | void* | void* | <- ThreadData // ---------------------------------------------------