summaryrefslogtreecommitdiffhomepage
path: root/c++.html.markdown
diff options
context:
space:
mode:
authorMatt Kline <slavik262@gmail.com>2014-10-17 00:03:33 -0700
committerMatt Kline <slavik262@gmail.com>2014-10-17 00:03:33 -0700
commiteadecf8b95eba4afec302c0ab49b0ca0ca921299 (patch)
treee0b7c2c63181302fbe13866691c60a52cdebeaf6 /c++.html.markdown
parent8e9d5af1ea5680bbf5f232d5510f35f3c69619c2 (diff)
Spell out favorite (instead of fav) in C++ doc
Diffstat (limited to 'c++.html.markdown')
-rw-r--r--c++.html.markdown6
1 files changed, 3 insertions, 3 deletions
diff --git a/c++.html.markdown b/c++.html.markdown
index b55a764c..4a070d95 100644
--- a/c++.html.markdown
+++ b/c++.html.markdown
@@ -157,13 +157,13 @@ int main()
int myInt;
// Prints to stdout (or terminal/screen)
- cout << "Enter your fav number:\n";
+ cout << "Enter your favorite number:\n";
// Takes in input
cin >> myInt;
// cout can also be formatted
- cout << "Your fav number is " << myInt << "\n";
- // Your fav number is ##
+ cout << "Your favorite number is " << myInt << "\n";
+ // prints "Your favorite number is <myInt>"
cerr << "Used for error messages";
}