Skip to content

Commit c41bd00

Browse files
committed
cleaning up the md
1 parent e42e784 commit c41bd00

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

.github/instructions/adding_new_parser.guidelines.instructions.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Guidelines for Adding New Parser Versions to SqlScriptDOM
22

3-
This guide provides step-by-step instructions for adding support for a new SQL Server version parser to the SqlScriptDOM library. This pattern was established from the TSql180 parser implementation for SQL Server Yellowstone (vnext).
3+
This guide provides step-by-step instructions for adding support for a new SQL Server version parser to the SqlScriptDOM library. This pattern was established from the TSql180 parser
44

55
## When to Use This Guide
66

@@ -27,7 +27,6 @@ SqlScriptDOM uses a version numbering scheme that corresponds to SQL Server vers
2727
- TSql150 = SQL Server 2019
2828
- TSql160 = SQL Server 2022
2929
- TSql170 = SQL Server 2025
30-
- TSql180 = SQL Server Yellowstone (vnext)
3130

3231
**Naming Pattern**: `TSql{CompatibilityLevel}` where CompatibilityLevel is typically `(MajorVersion - 1900) * 10`
3332

@@ -47,7 +46,7 @@ namespace Microsoft.SqlServer.TransactSql.ScriptDom
4746
// ... existing versions ...
4847
4948
/// <summary>
50-
/// Sql 18.0 mode (SQL Server Yellowstone/vnext).
49+
/// Sql 18.0 mode
5150
/// </summary>
5251
Sql180 = 11,
5352
}
@@ -268,7 +267,7 @@ using Microsoft.SqlServer.TransactSql.ScriptDom.Versioning;
268267
namespace Microsoft.SqlServer.TransactSql.ScriptDom
269268
{
270269
/// <summary>
271-
/// The TSql Parser for 18.0 (SQL Server Yellowstone/vnext).
270+
/// The TSql Parser for 18.0
272271
/// </summary>
273272
[Serializable]
274273
public class TSql180Parser : TSqlParser
@@ -444,7 +443,7 @@ using Microsoft.SqlServer.TransactSql.ScriptDom.ScriptGenerator;
444443
namespace Microsoft.SqlServer.TransactSql.ScriptDom
445444
{
446445
/// <summary>
447-
/// Script generator for T-SQL 180 (SQL Server Yellowstone/vnext)
446+
/// Script generator for T-SQL 180
448447
/// </summary>
449448
public sealed class Sql180ScriptGenerator : SqlScriptGenerator
450449
{

0 commit comments

Comments
 (0)