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