提交 e2205659 编写于 作者: G Graydon Hoare

Fix tabSize doc build breakage, also remove the stray tab that got into docs.

上级 c1157161
......@@ -11,6 +11,7 @@ exports.splitLines = function(string){return string.split(/\r?\n/);};
// Counts the column offset in a string, taking tabs into account.
// Used mostly to find indentation.
function countColumn(string, end) {
tabSize = 4;
if (end == null) {
end = string.search(/[^\s\u00a0]/);
if (end == -1) end = string.length;
......
......@@ -351,7 +351,7 @@ Examples of integer literals of various forms:
~~~~
123; 0xff00; // type determined by program context;
// defaults to int in absence of type
// information
// information
123u; // type uint
123_u; // type uint
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册