diff options
author | Andre Polykanine A.K.A. Menelion Elensúlë <andre@oire.org> | 2015-12-02 22:13:38 +0200 |
---|---|---|
committer | Andre Polykanine A.K.A. Menelion Elensúlë <andre@oire.org> | 2015-12-02 22:13:38 +0200 |
commit | ea89005407cc9a4b553dbf5d3b763aed86571503 (patch) | |
tree | b25c9f46c06f107f3bf4c94289598a87916e7874 /d.html.markdown | |
parent | 19ebe8205bc4c21c073103407591ff80cf56e75a (diff) | |
parent | ba7b8a613b445d1ee79ad190ceed6a008595116c (diff) |
Merge pull request #1743 from jtrestik/master
[d/en] Fix Typos
Diffstat (limited to 'd.html.markdown')
-rw-r--r-- | d.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/d.html.markdown b/d.html.markdown index ecb9e3ac..6f88cf84 100644 --- a/d.html.markdown +++ b/d.html.markdown @@ -70,7 +70,7 @@ void main() { ``` We can define new types with `struct`, `class`, `union`, and `enum`. Structs and unions -are passed to functions by value (i.e. copied) and classes are passed by reference. Futhermore, +are passed to functions by value (i.e. copied) and classes are passed by reference. Furthermore, we can use templates to parameterize all of these on both types and values! ```c |