diff options
author | George Gognadze <dreamtocode@users.noreply.github.com> | 2015-10-01 18:55:28 +0400 |
---|---|---|
committer | George Gognadze <dreamtocode@users.noreply.github.com> | 2015-10-01 18:55:28 +0400 |
commit | 8eb410208a8d9b0a42f6c52411455ace04c78101 (patch) | |
tree | edbc5ea2aee4d5ff3f5506eec1125aaf2f1bc039 /c++.html.markdown | |
parent | a743c831a07f5e846051b156152fe8e6ddcfb097 (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.markdown | 2 |
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! }; |