Skip to content

Commit 7d98e30

Browse files
committed
Fix git.io links
1 parent ce62e7a commit 7d98e30

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

packages/remark-parse/lib/tokenizer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ function factory(type) {
145145
// Capture stack-trace.
146146
self.file.fail(
147147
new Error(
148-
'Incorrectly eaten value: please report this warning on http://git.io/vg5Ft'
148+
'Incorrectly eaten value: please report this warning on https://git.io/vg5Ft'
149149
),
150150
now()
151151
)

packages/remark-stringify/lib/visitors/code.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ function code(node, parent) {
6565
options.pedantic
6666
) {
6767
self.file.fail(
68-
'Cannot indent code properly. See http://git.io/vgFvT',
68+
'Cannot indent code properly. See https://git.io/fxKR8',
6969
node.position
7070
)
7171
}

test/remark-process.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ test('remark().processSync(value)', function(t) {
3636
.data('settings', {pedantic: true, listItemIndent: '1'})
3737
.processSync(['* List', '', ' code()'].join('\n'))
3838
},
39-
/Cannot indent code properly. See http:\/\/git.io\/vgFvT/,
39+
/Cannot indent code properly. See https:\/\/git.io\/fxKR8/,
4040
'should throw when `pedantic` is `true`, `listItemIndent` is not `tab`, and compiling code in a list-item'
4141
)
4242

0 commit comments

Comments
 (0)