Merge pull request #1743 from jtrestik/master

[d/en] Fix Typos
This commit is contained in:
Andre Polykanine A.K.A. Menelion Elensúlë 2015-12-02 22:13:38 +02:00
commit ea89005407

View File

@ -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