diff --git a/README.md b/README.md index 8742167..351d102 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ # meta CodeApprove meta repo for testing. + +Adding a line diff --git a/languages/index.js b/languages/index.js index 6bd5562..f3140ff 100644 --- a/languages/index.js +++ b/languages/index.js @@ -263,6 +263,7 @@ function interpolate(template, replacements, syntax){ * Pad string with `char` if its' length is smaller than `minLen` */ function rpad(str, minLen, ch) { + // Add a commment ch = ch || ' '; return (str.length < minLen)? str + repeat(ch, minLen - str.length) : str; } @@ -281,6 +282,7 @@ function lpad(str, minLen, ch) { * Repeat string n times */ function repeat(str, n){ + // Add another comment ok return (new Array(n + 1)).join(str); } diff --git a/tests/ColumnLogo.png b/tests/ColumnLogo.png new file mode 100644 index 0000000..c071de2 Binary files /dev/null and b/tests/ColumnLogo.png differ