Skip to content

Commit 17f06de

Browse files
authored
fix (#2023)
1 parent b13a54c commit 17f06de

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libraries/botbuilder-lg/src/templateErrors.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212
export class TemplateErrors {
1313
public static readonly noTemplate: string = `LG file must have at least one template definition.`;
1414

15-
public static readonly invalidTemplateName: string = `Invalid template name. Template name should start with letter/number/_ and can only contains letter/number/_/./-.`;
15+
public static readonly invalidTemplateName: string = `Invalid template name. Template name should start with letter/number/_ and can only contains letter/number/./_.`;
1616

1717
public static readonly invalidTemplateBody: string = `Invalid template body. Expecting '-' prefix.`;
1818

19-
public static readonly invalidStrucName: string = `Invalid structure name. name should start with letter/number/_ and can only contains letter/number/_/./-.`;
19+
public static readonly invalidStrucName: string = `Invalid structure name. name should start with letter/number/_ and can only contains letter/number/./_.`;
2020

2121
public static readonly missingStrucEnd: string = `Invalid structure body. Expecting ']' at the end of the body.`;
2222

0 commit comments

Comments
 (0)