We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05a781c commit a6ef8c3Copy full SHA for a6ef8c3
src/features/explicit-resource-management.md
@@ -79,7 +79,8 @@ async function processData(response) {
79
}
80
81
} finally {
82
- reader.releaseLock(); // The reader's lock on the stream will be always released.
+ // The reader's lock on the stream will be always released.
83
+ reader.releaseLock();
84
85
86
return processedData;
@@ -182,7 +183,7 @@ Let’s take a look at each method and see an example of it:
182
183
});
184
using newStack = stack.move();
185
-// At this point just newStack exists and the resource inside it will be disposed.
186
+// Here just the newStack exists and the resource inside it will be disposed.
187
// Reader lock released.
188
```
189
0 commit comments