summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorSubramanian <subbul@gmail.com>2014-10-27 09:06:43 +0530
committerSubramanian <subbul@gmail.com>2014-10-27 09:06:43 +0530
commit00c4a6324e177b86c8b26318ed77d7373d8e716f (patch)
tree627ca2b436a4c8306c27f55cd93a3e9779837dd7
parent9fe68559c07d1cd73e26e9a2e53d9800a091e39d (diff)
correcting the setName method
set the method argument dogsName to name, instead of doggie_name
-rw-r--r--c++.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/c++.html.markdown b/c++.html.markdown
index 50de5eff..9f357b08 100644
--- a/c++.html.markdown
+++ b/c++.html.markdown
@@ -305,7 +305,7 @@ void Dog::Dog()
// if you are modifying them or const reference if you are not.
void Dog::setName(const std::string& dogsName)
{
- name = doggie_name;
+ name = dogsName;
}
void Dog::setWeight(int dogsWeight)