Documentation: Add parenthesis to the list of on-typing assists.

This commit is contained in:
Tom Alexander 2023-09-21 14:58:24 -04:00
parent d6fef2c7e3
commit 91b012f91d
No known key found for this signature in database
GPG Key ID: D3A179C9A53C0EDE

View File

@ -47,7 +47,7 @@ struct ExtendedTextEdit {
// - typing `=` between two expressions adds `;` when in statement position
// - typing `=` to turn an assignment into an equality comparison removes `;` when in expression position
// - typing `.` in a chain method call auto-indents
// - typing `{` in front of an expression inserts a closing `}` after the expression
// - typing `{` or `(` in front of an expression inserts a closing `}` or `)` after the expression
// - typing `{` in a use item adds a closing `}` in the right place
//
// VS Code::