Skip to content

Commit e220565

Browse files
committed
Fix tabSize doc build breakage, also remove the stray tab that got into docs.
1 parent c115716 commit e220565

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

doc/lib/codemirror-node.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ exports.splitLines = function(string){return string.split(/\r?\n/);};
1111
// Counts the column offset in a string, taking tabs into account.
1212
// Used mostly to find indentation.
1313
function countColumn(string, end) {
14+
tabSize = 4;
1415
if (end == null) {
1516
end = string.search(/[^\s\u00a0]/);
1617
if (end == -1) end = string.length;

doc/rust.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ Examples of integer literals of various forms:
351351
~~~~
352352
123; 0xff00; // type determined by program context;
353353
// defaults to int in absence of type
354-
// information
354+
// information
355355
356356
123u; // type uint
357357
123_u; // type uint

0 commit comments

Comments
 (0)