From a169e7fe24fe01ca7d36c21b9209d742e5b20b9d Mon Sep 17 00:00:00 2001 From: Dmitriy Ryajov Date: Mon, 15 Jan 2024 21:47:50 -0600 Subject: [PATCH] misc --- codex/indexingstrategy.nim | 3 +-- codex/slots.nim | 3 ++- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/codex/indexingstrategy.nim b/codex/indexingstrategy.nim index e4006ff1..aac9e802 100644 --- a/codex/indexingstrategy.nim +++ b/codex/indexingstrategy.nim @@ -103,5 +103,4 @@ proc new*( firstIndex: firstIndex, lastIndex: lastIndex, numberOfIterations: numberOfIterations, - step: divUp((lastIndex - firstIndex), numberOfIterations) - ) + step: divUp((lastIndex - firstIndex), numberOfIterations)) diff --git a/codex/slots.nim b/codex/slots.nim index a34949f3..fb0827a4 100644 --- a/codex/slots.nim +++ b/codex/slots.nim @@ -1,3 +1,4 @@ import ./slots/builder +import ./slots/sampler -export builder +export builder, sampler