diff options
author | Spurlow <c.s.smith0616@gmail.com> | 2015-10-31 19:20:30 +0800 |
---|---|---|
committer | Spurlow <c.s.smith0616@gmail.com> | 2015-10-31 19:20:30 +0800 |
commit | 8d2dafd3bd4f30119d31dfb939bbad4ee213ca36 (patch) | |
tree | b1778aa58a4604f4bfa43765b4b82e734d8483b7 | |
parent | 3709520131d7c7414888b9a42e50cd2cd47ac2f8 (diff) | |
parent | 9aad08bf78196758a568ec1272c94029221c2dd5 (diff) |
Merge pull request #1763 from amrue/D
[D/en] Fixed two typos and made minor formatting adjustment
-rw-r--r-- | d.html.markdown | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/d.html.markdown b/d.html.markdown index 80c1dc65..6f3710ab 100644 --- a/d.html.markdown +++ b/d.html.markdown @@ -199,8 +199,8 @@ our getter and setter methods, and keep the clean syntax of accessing members directly! Other object-oriented goodies at our disposal -include `interface`s, `abstract class`es, -and `override`ing methods. D does inheritance just like Java: +include interfaces, abstract classes, +and overriding methods. D does inheritance just like Java: Extend one class, implement as many interfaces as you please. We've seen D's OOP facilities, but let's switch gears. D offers @@ -247,7 +247,7 @@ void main() { // and take advantage of as many cores as we have available. auto arr = new double[1_000_000]; - // Use an index, and an array element by referece, + // Use an index, and an array element by reference, // and just call parallel on the array! foreach(i, ref elem; parallel(arr)) { ref = sqrt(i + 1.0); |