We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c115716 commit e220565Copy full SHA for e220565
doc/lib/codemirror-node.js
@@ -11,6 +11,7 @@ exports.splitLines = function(string){return string.split(/\r?\n/);};
11
// Counts the column offset in a string, taking tabs into account.
12
// Used mostly to find indentation.
13
function countColumn(string, end) {
14
+ tabSize = 4;
15
if (end == null) {
16
end = string.search(/[^\s\u00a0]/);
17
if (end == -1) end = string.length;
doc/rust.md
@@ -351,7 +351,7 @@ Examples of integer literals of various forms:
351
~~~~
352
123; 0xff00; // type determined by program context;
353
// defaults to int in absence of type
354
- // information
+ // information
355
356
123u; // type uint
357
123_u; // type uint
0 commit comments