Skip to content

Commit e988fe6

Browse files
committed
remove trailing asterisks
1 parent 94e3a52 commit e988fe6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

chapters/ch03-working-with-files.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -776,7 +776,7 @@ Let's break down the key components:
776776

777777
1. **`for await`**: These keywords start the asynchronous loop structure.
778778
2. **`element`**: This variable represents the current element of the asynchronous iterable in each iteration of the loop.
779-
3. **`async_iterable`****: This is an asynchronous iterable object, such as an asynchronous generator, a promise that resolves to an iterable, or any other object that implements the asynchronous [iteration protocol](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols).
779+
3. **`async_iterable`**: This is an asynchronous iterable object, such as an asynchronous generator, a promise that resolves to an iterable, or any other object that implements the asynchronous [iteration protocol](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols).
780780

781781
Here's an example of using **`for await..of`** to loop through an asynchronous iterable:
782782

0 commit comments

Comments
 (0)