summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAndre Polykanine A.K.A. Menelion Elensúlë <andre@oire.org>2015-12-02 22:13:38 +0200
committerAndre Polykanine A.K.A. Menelion Elensúlë <andre@oire.org>2015-12-02 22:13:38 +0200
commitea89005407cc9a4b553dbf5d3b763aed86571503 (patch)
treeb25c9f46c06f107f3bf4c94289598a87916e7874
parent19ebe8205bc4c21c073103407591ff80cf56e75a (diff)
parentba7b8a613b445d1ee79ad190ceed6a008595116c (diff)
Merge pull request #1743 from jtrestik/master
[d/en] Fix Typos
-rw-r--r--d.html.markdown2
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