Skip to content

Commit

Permalink
Removed newline character from comment. (#43596)
Browse files Browse the repository at this point in the history
A very simple PR just to remove an unnecessary newline character in a comment.
  • Loading branch information
shur committed Jun 14, 2024
1 parent 67cd90e commit f53b619
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion installation/sql/mysql/base.sql
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ CREATE TABLE IF NOT EXISTS `#__assets` (
`lft` int NOT NULL DEFAULT 0 COMMENT 'Nested set lft.',
`rgt` int NOT NULL DEFAULT 0 COMMENT 'Nested set rgt.',
`level` int unsigned NOT NULL COMMENT 'The cached level in the nested tree.',
`name` varchar(50) NOT NULL COMMENT 'The unique name for the asset.\n',
`name` varchar(50) NOT NULL COMMENT 'The unique name for the asset.',
`title` varchar(100) NOT NULL COMMENT 'The descriptive title for the asset.',
`rules` varchar(5120) NOT NULL COMMENT 'JSON encoded access control.',
PRIMARY KEY (`id`),
Expand Down

0 comments on commit f53b619

Please sign in to comment.