Author: Brian Teeman [brian@teeman.net]
Committer: GitHub [noreply@github.com] Mon, 01 Apr 2024 16:30:40 +0000
Hash: 92aad1274208dcf4841b3aa9288881532acc5331
Timestamp: Mon, 01 Apr 2024 16:30:40 +0000 (5 months ago)

+6 -6 +/-3 browse
Assorted typos (#487)
Assorted typos (#487)

1diff --git a/build/bundle-sizes.js b/build/bundle-sizes.js
2index 0e621d8..08e38c4 100644
3--- a/build/bundle-sizes.js
4+++ b/build/bundle-sizes.js
5 @@ -39,7 +39,7 @@ const regex = /postcss\s(?<filepath>\S+)\s\-[o]\s(?<filename>.*\.css)(?:.*$)/;
6
7 /**
8 * @typedef {Object} Size
9- * @propety {number} raw - Unminified size in bytes
10+ * @property {number} raw - Unminified size in bytes
11 * @property {string} size - Unminified size in KiB
12 * @property {string} minified - Minified size in KiB
13 * @property {string} brotli - Brotli compressed minified size in KiB
14 diff --git a/docsite/index.html b/docsite/index.html
15index d04bb0a..945519a 100644
16--- a/docsite/index.html
17+++ b/docsite/index.html
18 @@ -1102,7 +1102,7 @@
19 <h6>Customize Bundles</h6>
20 <p></p>
21 <pre class="language-js"><code>
22- // bulid src files
23+ // build src files
24 npm run gen:shadowdom // src files with `:host` instead of `html`
25 npm run gen:nowhere // src files without `:where()`
26 npm run gen:prefixed // each prop prefixed with `op`, like `--op-font-size-1`
27 @@ -1197,7 +1197,7 @@
28 <a href="https://www.sublimetext.com/docs/completions.html#plugins" target="_blank">plugins</a>.
29 </li>
30 <li>
31- An approach that is less strenous is the "completion file" approach.
32+ An approach that is less strenuous is the "completion file" approach.
33 Here, all you'd be required to do is point the `scope` keyword in the .sublime-completions file to the open-props classes in the node_modules folder like so:
34 </li>
35 <pre class="language-js"><code>
36 diff --git a/docsite/js/scrollspy.js b/docsite/js/scrollspy.js
37index edbbac0..1c0ba6e 100644
38--- a/docsite/js/scrollspy.js
39+++ b/docsite/js/scrollspy.js
40 @@ -18,7 +18,7 @@ let observer = new IntersectionObserver(entries => {
41 const id = entry.target.id;
42 // Find it's corresponding link
43 const link = linkMap[`#` + id];
44- // Highlight the link of the interesecting container
45+ // Highlight the link of the intersecting container
46 // and remove any existing containers
47 if(entry.isIntersecting) {
48 link.classList.add('in-view')
49 @@ -35,8 +35,8 @@ let observer = new IntersectionObserver(entries => {
50 }
51 }
52 // Set a threshold of 10% of the target's visibility to trigger the
53- // observer's calback. This will trigger the new section faster and
54- // help keep multiple sections higlighted.
55+ // observer's callback. This will trigger the new section faster and
56+ // help keep multiple sections highlighted.
57 }, { threshold: .1 });
58
59 for (let container of containers) {