Skip to content

Commit 7e8ca81

Browse files
committed
see this fixes aria allowed attr
1 parent 42cdad4 commit 7e8ca81

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

16-measurements/iteration-ii.qmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ For `not elt`, recall our discussion of **truthy values**:
6666
* Therefore for numeric values of `elt`, the only instance in which `not elt` will evaluate to `True` is when `elt` is `0`: `not elt` is `not 0` is `not False` is `True`.
6767
* All non-zero numeric values of `elt` will evaluate to `False`, e.g., when `elt` is `1`: `not elt` is `not 1` is `not True` is `False`.
6868

69-
::: {.callout-note title="Explanation: Each Line Explained" collapse="true"}
69+
::: {.callout-note title="Explanation: Each Line Explained" collapse="true" role="button"}
7070

7171
Each line explained:
7272

@@ -98,7 +98,7 @@ triplets(make_array(0, 1, 0, 0, 1, 0, 0, 0, 0, 1))
9898
* (Line 12): Return the number of triples seen.
9999
:::
100100

101-
::: {.callout-note title="Explanation: Array Example Explained" collapse="true"}
101+
::: {.callout-note title="Explanation: Array Example Explained" collapse="true" role="button"}
102102

103103
```{.python code-line-numbers="true"}
104104
def triplets(arr):

0 commit comments

Comments
 (0)