Skip to content

Commit d00857d

Browse files
committed
make EOF newlines consistent
1 parent 56231d3 commit d00857d

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

chapters/regular_expressions/replacing-html-tags-with-html-named-entities.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ htmlEncode('<a href="http://bn.com">Barnes & Noble</a>')
2222

2323
## Discussion
2424

25-
There are probably better ways to implement the above method.
25+
There are probably better ways to implement the above method.

chapters/strings/lowercasing-a-string.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ String.prototype.downcase = function() {
4242
return this.toLowerCase();
4343
};
4444
"ONE TWO THREE".downcase();
45-
{% endhighlight %}
45+
{% endhighlight %}

chapters/strings/trimming-whitespace-from-a-string.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,4 +63,3 @@ String::rstrip = -> @replace /\s+$/g, ""
6363
{% endhighlight %}
6464

6565
For an interesting discussion and benchmarks of JavaScript `trim` performance, see [this blog post](http://blog.stevenlevithan.com/archives/faster-trim-javascript) by Steve Levithan.
66-

chapters/strings/uppercasing-a-string.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,4 @@ String.prototype.upcase = function() {
4242
return this.toUpperCase();
4343
};
4444
"one two three".upcase();
45-
{% endhighlight %}
45+
{% endhighlight %}

0 commit comments

Comments
 (0)