Commit Diff


commit - e35a45a104e576707cb6f0d72843825ce4b49083
commit + 2a157482cbde5cbef3a940dae520b9694646bce8
blob - b045dbff3b1c41cc0f2465921639d06367d1bd0a
blob + 931b9f8d5f093188e7ab2ac3523634e57f29cf25
--- molly/log.lua
+++ molly/log.lua
@@ -63,7 +63,7 @@ end
 -- @string message Message.
 -- @return nil
 -- @usage
--- > local log = require('jepsen.log')
+-- > local log = require('molly.log')
 -- > log.warn('Message')
 -- [WARN  2021-12-7 13:17:46:073544]: Message
 --
blob - 3677489cc7cd7988b4ec6539cfa52ee45a888f85
blob + a4987c27507dca464d887110e8f66c6b61fb1e40
--- molly/thread.lua
+++ molly/thread.lua
@@ -1,8 +1,8 @@
 ---- Module with thread implementation.
 -- @module molly.thread
 --
--- - `jepsen.compat.thread_fiber` - threads, based on Tarantool fibers.
--- - `jepsen.compat.thread_coroutine` - threads, based on Lua coroutines.
+-- - `molly.compat.thread_fiber` - threads, based on Tarantool fibers.
+-- - `molly.compat.thread_coroutine` - threads, based on Lua coroutines.
 
 local thread_coroutine = require('molly.compat.thread_coroutine')
 local thread_fiber = require('molly.compat.thread_fiber')