Skip to content

Commit 73676ca

Browse files
committed
add dots after links to end the sentences
1 parent 98a90ce commit 73676ca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/plots/cartesian/axis_format.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ function descriptionOnlyNumbers(label, x) {
2525
return [
2626
'Sets the ' + label + ' formatting rule' + (x ? 'for `' + x + '` ' : ''),
2727
'using d3 formatting mini-languages',
28-
'which are very similar to those in Python. For numbers, see: ' + FORMAT_LINK
28+
'which are very similar to those in Python. For numbers, see: ' + FORMAT_LINK + '.'
2929
].join(' ');
3030
}
3131

3232
function descriptionWithDates(label, x) {
3333
return descriptionOnlyNumbers(label, x) + [
34-
' And for dates see: ' + DATE_FORMAT_LINK,
34+
' And for dates see: ' + DATE_FORMAT_LINK + '.',
3535
'We add two items to d3\'s date formatter:',
3636
'*%h* for half of the year as a decimal number as well as',
3737
'*%{n}f* for fractional seconds',

0 commit comments

Comments
 (0)