summaryrefslogtreecommitdiffhomepage
path: root/csharp.html.markdown
diff options
context:
space:
mode:
authorchris@chriszimmerman.net <cjay.zimmerman@gmail.com>2015-10-22 21:21:33 -0400
committerchris@chriszimmerman.net <cjay.zimmerman@gmail.com>2015-10-22 21:21:33 -0400
commit33ffabafc5e9d80670561d6e3096dfc449b3d487 (patch)
tree2177113c8094710916970d082d31a860c0b198bd /csharp.html.markdown
parentf4775ea193c6ccd27950c39b46b11c9041fb8bfa (diff)
Fixed minor grammatical change.
Diffstat (limited to 'csharp.html.markdown')
-rw-r--r--csharp.html.markdown4
1 files changed, 2 insertions, 2 deletions
diff --git a/csharp.html.markdown b/csharp.html.markdown
index dfdd98de..83efdfb6 100644
--- a/csharp.html.markdown
+++ b/csharp.html.markdown
@@ -879,8 +879,8 @@ on a new line! ""Wow!"", the masses cried";
bool Broken { get; } // interfaces can contain properties as well as methods & events
}
- // Class can inherit only one other class, but can implement any amount of interfaces, however
- // the base class name must be the first in the list and all interfaces follow
+ // Classes can inherit only one other class, but can implement any amount of interfaces,
+ // however the base class name must be the first in the list and all interfaces follow
class MountainBike : Bicycle, IJumpable, IBreakable
{
int damage = 0;