summaryrefslogtreecommitdiffhomepage
path: root/c++.html.markdown
diff options
context:
space:
mode:
authorGeorge Gognadze <dreamtocode@users.noreply.github.com>2015-10-01 18:55:28 +0400
committerGeorge Gognadze <dreamtocode@users.noreply.github.com>2015-10-01 18:55:28 +0400
commit8eb410208a8d9b0a42f6c52411455ace04c78101 (patch)
treeedbc5ea2aee4d5ff3f5506eec1125aaf2f1bc039 /c++.html.markdown
parenta743c831a07f5e846051b156152fe8e6ddcfb097 (diff)
Update c++.html.markdown
o should be capitalized. this: overrides should be: Overrides
Diffstat (limited to 'c++.html.markdown')
-rw-r--r--c++.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/c++.html.markdown b/c++.html.markdown
index 26dfe111..8a7f5a59 100644
--- a/c++.html.markdown
+++ b/c++.html.markdown
@@ -735,7 +735,7 @@ class Foo {
virtual void bar();
};
class FooSub : public Foo {
- virtual void bar(); // overrides Foo::bar!
+ virtual void bar(); // Overrides Foo::bar!
};