proposal-explicit-resource-management icon indicating copy to clipboard operation
proposal-explicit-resource-management copied to clipboard

Capitalize variable name

Open bojavou opened this issue 1 year ago • 0 comments

A variable reference in the await using examples has incorrect capitalization.

const asyncRes = { [Symbol.asyncDispose]() {} };
..
await using x = asyncres;

This patch aligns the reference with the declaration.

await using x = asyncRes;

bojavou avatar Aug 20 '24 01:08 bojavou