diff options
Diffstat (limited to '')
| -rw-r--r-- | demo/index.html | 2 | ||||
| -rw-r--r-- | demo/src/cpu-performance.ts | 5 |
2 files changed, 5 insertions, 2 deletions
diff --git a/demo/index.html b/demo/index.html index 0639147..c5a2068 100644 --- a/demo/index.html +++ b/demo/index.html @@ -1,4 +1,4 @@ -<!DOCTYPE html> +<!doctype html> <html lang="en"> <head> <meta charset="UTF-8" /> diff --git a/demo/src/cpu-performance.ts b/demo/src/cpu-performance.ts index a4afc73..1b1261e 100644 --- a/demo/src/cpu-performance.ts +++ b/demo/src/cpu-performance.ts @@ -6,7 +6,10 @@ export class CPUPerformance { private samples = new Float32Array(64); private sampleIndex = 0; - constructor(private cpu: CPU, private MHZ: number) {} + constructor( + private cpu: CPU, + private MHZ: number, + ) {} reset() { this.prevTime = 0; |
