Skip to content

Commit

Permalink
Fix some typos (#4134)
Browse files Browse the repository at this point in the history
Signed-off-by: hongkuang <[email protected]>
  • Loading branch information
HongKuang authored Apr 8, 2024
1 parent 01d212c commit dfabe12
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions benchmarks/giant.html
Original file line number Diff line number Diff line change
Expand Up @@ -4749,11 +4749,11 @@ <h1 class="Subhead-heading ">Open a pull request</h1>
<code>
<a title="Fix x layout (#2499)

* rollback &amp; simplfy
* rollback &amp; simplify

* add tests" data-pjax="true" class="Link--secondary markdown-title" href="/livewire/livewire/commit/bec0a3e7a0857ac5915695df23d32c99f4955a57">Fix x layout (</a><a class="issue-link js-issue-link" data-error-text="Failed to load title" data-id="808077696" data-permission-text="Title is private" data-url="https://github.com/livewire/livewire/issues/2499" data-hovercard-type="pull_request" data-hovercard-url="/livewire/livewire/pull/2499/hovercard" href="https://github.com/livewire/livewire/pull/2499">#2499</a><a title="Fix x layout (#2499)

* rollback &amp; simplfy
* rollback &amp; simplify

* add tests" data-pjax="true" class="Link--secondary markdown-title" href="/livewire/livewire/commit/bec0a3e7a0857ac5915695df23d32c99f4955a57">)</a>
</code>
Expand Down Expand Up @@ -4826,7 +4826,7 @@ <h1 class="Subhead-heading ">Open a pull request</h1>
</div>
</div>
<div class="Details-content--hidden mt-2">
<pre class="color-text-secondary ws-pre-wrap">* rollback &amp; simplfy
<pre class="color-text-secondary ws-pre-wrap">* rollback &amp; simplify

* add tests</pre>
</div>
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/src/combobox.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export default function (Alpine) {
Alpine.magic('comboboxOption', el => {
let data = Alpine.$data(el)

// It's not great depending on the existance of the attribute in the DOM
// It's not great depending on the existence of the attribute in the DOM
// but it's probably the fastest and most reliable at this point...
let optionEl = Alpine.findClosest(el, i => {
return i.hasAttribute('x-combobox:option')
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/src/listbox.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export default function (Alpine) {
Alpine.magic('listboxOption', (el) => {
let data = Alpine.$data(el)

// It's not great depending on the existance of the attribute in the DOM
// It's not great depending on the existence of the attribute in the DOM
// but it's probably the fastest and most reliable at this point...
let optionEl = Alpine.findClosest(el, i => {
return i.hasAttribute('x-listbox:option')
Expand Down

0 comments on commit dfabe12

Please sign in to comment.