summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJana Trestikova <jana.trestikova@gmail.com>2015-10-23 06:55:00 +0200
committerJana Trestikova <jana.trestikova@gmail.com>2015-10-23 06:57:18 +0200
commitba7b8a613b445d1ee79ad190ceed6a008595116c (patch)
tree9453215a354f8077b5e38a4eb6fdb8aba699877c
parentf4775ea193c6ccd27950c39b46b11c9041fb8bfa (diff)
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 80c1dc65..3915b005 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