Skip to content

Commit 57dbcd7

Browse files
authored
missing line break after summary tag for synonyms (#186)
* missing line break after summary tag for synonyms fixes #184
1 parent c85d37c commit 57dbcd7

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

appveyor/sqlcover/Coverage.opencoverxml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -304,11 +304,11 @@
304304
<SequencePoint vc="10" uspid="284" ordinal="44" offset="32325" sl="862" sc="1" el="984" ec="6" />
305305
<SequencePoint vc="10" uspid="285" ordinal="45" offset="37458" sl="990" sc="1" el="1109" ec="6" />
306306
<SequencePoint vc="10" uspid="286" ordinal="46" offset="42495" sl="1115" sc="1" el="1183" ec="6" />
307-
<SequencePoint vc="10" uspid="287" ordinal="47" offset="45432" sl="1189" sc="1" el="1319" ec="6" />
308-
<SequencePoint vc="10" uspid="288" ordinal="48" offset="51032" sl="1322" sc="1" el="1325" ec="52" />
309-
<SequencePoint vc="10" uspid="289" ordinal="49" offset="51297" sl="1328" sc="1" el="1331" ec="20" />
310-
<SequencePoint vc="10" uspid="290" ordinal="50" offset="51379" sl="1333" sc="1" el="1333" ec="196" />
311-
<SequencePoint vc="10" uspid="291" ordinal="51" offset="51578" sl="1334" sc="1" el="1343" ec="10" />
307+
<SequencePoint vc="10" uspid="287" ordinal="47" offset="45452" sl="1189" sc="1" el="1319" ec="6" />
308+
<SequencePoint vc="10" uspid="288" ordinal="48" offset="51052" sl="1322" sc="1" el="1325" ec="52" />
309+
<SequencePoint vc="10" uspid="289" ordinal="49" offset="51317" sl="1328" sc="1" el="1331" ec="20" />
310+
<SequencePoint vc="10" uspid="290" ordinal="50" offset="51399" sl="1333" sc="1" el="1333" ec="196" />
311+
<SequencePoint vc="10" uspid="291" ordinal="51" offset="51598" sl="1334" sc="1" el="1343" ec="10" />
312312
</SequencePoints>
313313
</Method>
314314
</Methods>

appveyor/sqlcover/[dbo].[sp_doc]

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ sp_doc - Always have current documentation by generating it on the fly in markdo
1616

1717
Part of the DBA MultiTool http://dba-multitool.org
1818

19-
Version: 20201221
19+
Version: 20210302
2020

2121
MIT License
2222

@@ -1116,7 +1116,7 @@ BEGIN
11161116
IF EXISTS (SELECT 1 FROM [sys].[synonyms] WHERE [is_ms_shipped] = 0)
11171117
BEGIN;
11181118
INSERT INTO #markdown ([value])
1119-
VALUES (CONCAT(CHAR(13), CHAR(10), ''## Synonyms'')) ,(CONCAT(CHAR(13), CHAR(10), ''<details><summary>Click to expand</summary>''));
1119+
VALUES (CONCAT(CHAR(13), CHAR(10), ''## Synonyms'')) ,(CONCAT(CHAR(13), CHAR(10), ''<details><summary>Click to expand</summary>'', CHAR(13), CHAR(10)));
11201120
' +
11211121

11221122
+ N'INSERT INTO #markdown

install_dba-multitool.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ sp_doc - Always have current documentation by generating it on the fly in markdo
7878
7979
Part of the DBA MultiTool http://dba-multitool.org
8080
81-
Version: 20201221
81+
Version: 20210302
8282
8383
MIT License
8484
@@ -1178,7 +1178,7 @@ BEGIN
11781178
IF EXISTS (SELECT 1 FROM [sys].[synonyms] WHERE [is_ms_shipped] = 0)
11791179
BEGIN;
11801180
INSERT INTO #markdown ([value])
1181-
VALUES (CONCAT(CHAR(13), CHAR(10), ''## Synonyms'')) ,(CONCAT(CHAR(13), CHAR(10), ''<details><summary>Click to expand</summary>''));
1181+
VALUES (CONCAT(CHAR(13), CHAR(10), ''## Synonyms'')) ,(CONCAT(CHAR(13), CHAR(10), ''<details><summary>Click to expand</summary>'', CHAR(13), CHAR(10)));
11821182
' +
11831183

11841184
+ N'INSERT INTO #markdown

sp_doc.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ sp_doc - Always have current documentation by generating it on the fly in markdo
7878
7979
Part of the DBA MultiTool http://dba-multitool.org
8080
81-
Version: 20201221
81+
Version: 20210302
8282
8383
MIT License
8484
@@ -1178,7 +1178,7 @@ BEGIN
11781178
IF EXISTS (SELECT 1 FROM [sys].[synonyms] WHERE [is_ms_shipped] = 0)
11791179
BEGIN;
11801180
INSERT INTO #markdown ([value])
1181-
VALUES (CONCAT(CHAR(13), CHAR(10), ''## Synonyms'')) ,(CONCAT(CHAR(13), CHAR(10), ''<details><summary>Click to expand</summary>''));
1181+
VALUES (CONCAT(CHAR(13), CHAR(10), ''## Synonyms'')) ,(CONCAT(CHAR(13), CHAR(10), ''<details><summary>Click to expand</summary>'', CHAR(13), CHAR(10)));
11821182
' +
11831183

11841184
+ N'INSERT INTO #markdown

0 commit comments

Comments
 (0)