From 0a520e0136a4785d3f65f384cd53948bb017e7c5 Mon Sep 17 00:00:00 2001 From: ImmanuelSegol <3ditds@gmail.com> Date: Thu, 1 Feb 2024 14:24:27 +0200 Subject: [PATCH] Update docs/icicle/primitives/msm.md Co-authored-by: Jeremy Felder --- docs/icicle/primitives/msm.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/icicle/primitives/msm.md b/docs/icicle/primitives/msm.md index 5010a57..82d6d69 100644 --- a/docs/icicle/primitives/msm.md +++ b/docs/icicle/primitives/msm.md @@ -112,7 +112,7 @@ Single MSM mode should be used when batching isn't possible or when you have to ### How do I toggle between MSM modes? -Toggling between MSM modes occurrences automatically, based on the number of results you are expecting from the `msm::msm` function. If you are expecting an array of `msm_results` ICICLE will automatically split `scalars` and `points` into equal parts and run them as multiple MSMs in parallel. +Toggling between MSM modes occurs automatically based on the number of results you are expecting from the `msm::msm` function. If you are expecting an array of `msm_results`, ICICLE will automatically split `scalars` and `points` into equal parts and run them as multiple MSMs in parallel. ```rust ...