Docs: unused variable removed

The `const ctx` declaration in `loop` shadows the `let ctx` declaration in the outer scope. 
This change removes the outer declaration.
pull/7738/head
Christian Engen 6 years ago committed by GitHub
parent d257fdc622
commit cd75b30284

@ -2,7 +2,6 @@
import { onMount } from 'svelte';
let canvas;
let ctx;
let running = false;
const r = Math.random();

Loading…
Cancel
Save