Skip to content

Commit 620a669

Browse files
committed
Issue#1511: Corrected missing semicolon in docs.
1 parent cc92d1c commit 620a669

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/variable_rules.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ This rule checks the **:=** is on the same line as the **variable** keyword.
324324
variable size : integer :=
325325
1;
326326
variable width : integer :=
327-
32
327+
32;
328328
329329
variable_100
330330
############

vsg/rules/variable/rule_018.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class rule_018(Rule):
2727
variable size : integer :=
2828
1;
2929
variable width : integer :=
30-
32
30+
32;
3131
"""
3232

3333
def __init__(self):

0 commit comments

Comments
 (0)