Fix typo in passing-objects.md (#856)

Fixes typo in HTML example: `do-mmath` -> `do-math`
This commit is contained in:
John Franey
2022-10-15 14:56:29 -04:00
committed by GitHub
parent b184c92f01
commit e45d8bf973

View File

@@ -88,7 +88,7 @@ This will make all Python global variables available in JavaScript with `pyodide
```
```html
<input type="button" value="Log Python Variables" id="do-mmath">
<input type="button" value="Log Python Variables" id="do-math">
<script>
document.getElementById("do-math").addEventListener("click", () => {
const exp = pyodideGlobals.get('rough_exponential');