Skip to content

Commit

Permalink
Typos.
Browse files Browse the repository at this point in the history
  • Loading branch information
sletz committed May 9, 2024
1 parent 6e07af9 commit a873ab3
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -477,5 +477,5 @@ <h4 class="modal-title" id="keyboardModalLabel">Keyboard Shortcuts</h4>

<!--
MkDocs version : 1.4.3
Build Date UTC : 2024-04-29 20:38:48.461862+00:00
Build Date UTC : 2024-05-09 19:04:27.552165+00:00
-->
2 changes: 1 addition & 1 deletion docs/search/search_index.json

Large diffs are not rendered by default.

Binary file modified docs/sitemap.xml.gz
Binary file not shown.
20 changes: 10 additions & 10 deletions docs/tutorials/summation/exfaust0/exfaust0.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions docs/tutorials/summation/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@ <h2 id="block-sum">Block Sum</h2>

summation = + ~ *(phase != 0) : capture(phase==(n-1));
phase = 1 : (+,n:%)~_;
capture(b) = select2(n)~_;
capture(b) = select2(b)~_;
};
</code></pre>
<h2 id="overlapping-block-sum">Overlapping Block Sum</h2>
Expand All @@ -447,7 +447,7 @@ <h2 id="overlapping-block-sum">Overlapping Block Sum</h2>
with { w = n/c; };

phase = 1 : (+,n:%)~_;
capture(b) = select2(n)~_;
capture(b) = select2(b)~_;
};
</code></pre>
<h2 id="comparing-all-the-solutions">Comparing all the solutions</h2>
Expand Down
4 changes: 2 additions & 2 deletions src/tutorials/summation.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ RMS(n) = S:M:R with {
summation = + ~ *(phase != 0) : capture(phase==(n-1));
phase = 1 : (+,n:%)~_;
capture(b) = select2(n)~_;
capture(b) = select2(b)~_;
};
```
## Overlapping Block Sum
Expand All @@ -139,7 +139,7 @@ RMS(n) = S:M:R with {
with { w = n/c; };
phase = 1 : (+,n:%)~_;
capture(b) = select2(n)~_;
capture(b) = select2(b)~_;
};
```

Expand Down

0 comments on commit a873ab3

Please sign in to comment.