summaryrefslogtreecommitdiff
path: root/doc/dev/osd_internals/osd_throttles.rst
diff options
context:
space:
mode:
Diffstat (limited to 'doc/dev/osd_internals/osd_throttles.rst')
-rw-r--r--doc/dev/osd_internals/osd_throttles.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/dev/osd_internals/osd_throttles.rst b/doc/dev/osd_internals/osd_throttles.rst
index 6739bd9ea5a..ee98d24850c 100644
--- a/doc/dev/osd_internals/osd_throttles.rst
+++ b/doc/dev/osd_internals/osd_throttles.rst
@@ -12,7 +12,7 @@ included in FileStore as FileStore::wbthrottle. The intention is to
bound the amount of outstanding IO we need to do to flush the journal.
At the same time, we don't want to necessarily do it inline in case we
might be able to combine several IOs on the same object close together
-in time. Thus, in FileStore::_write, we queue the fd for asyncronous
+in time. Thus, in FileStore::_write, we queue the fd for asynchronous
flushing and block in FileStore::_do_op if we have exceeded any hard
limits until the background flusher catches up.