Gavin Courtney пре 4 година
родитељ
комит
0cf76b6b77
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      packages/docs/src/en/advanced/async.md

+ 1 - 1
packages/docs/src/en/advanced/async.md

@@ -20,7 +20,7 @@ function getLabel() {
 
 
 Because `getLabel` is synchronous, everything works as expected.
 Because `getLabel` is synchronous, everything works as expected.
 
 
-Now let's pretend that `getLabel` makes a network request to retrieve the label and can't return one instantaniously (asynchronous). By making `getLabel` an async function, you can call it from Alpine using JavaScript's `await` syntax.
+Now let's pretend that `getLabel` makes a network request to retrieve the label and can't return one instantaneously (asynchronous). By making `getLabel` an async function, you can call it from Alpine using JavaScript's `await` syntax.
 
 
 ```js
 ```js
 async function getLabel() {
 async function getLabel() {