Skip to content

Commit 8808c58

Browse files
committed
Merge pull request #111 from hamoid/patch-1
Fix mispelled variable
2 parents 6b5884f + 13ab0b9 commit 8808c58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

chapters/c++11/chapter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ for(auto & mySelfie : mySelfies) {
174174
auto myFriends = snapChatClient.getFriends();
175175

176176
//now let's send them to all my friends
177-
for(auto & myFriend : myFriend) {
177+
for(auto & myFriend : myFriends) {
178178
if (myFriend.isHot()) {
179179
for(auto & mySelfie : mySelfies) {
180180
myFriend.sendImage(mySelfie); // (2)

0 commit comments

Comments
 (0)