Skip to content

Commit

Permalink
fixed some typo in ex15.34.35.36.38/main.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
XDXX committed Sep 17, 2015
1 parent f376870 commit 8b14ce6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ch15/ex15.34.35.36.38/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,9 @@
// BinaryQuery a = Query("fiery") & Query("bird");
// Illegal. Because BinaryQuery is an abstract class.
// AndQuery b = Query("fiery") & Query("bird");
// Illegal. Because operator & returns a Query which can not conver to an AndQuery object.
// Illegal. Because operator & returns a Query which can not convert to an AndQuery object.
// OrQuery c = Query("fiery") & Query("bird");
// Illegal. Because operator & returns a Query which can not conver to an OrQuery object.
// Illegal. Because operator & returns a Query which can not convert to an OrQuery object.
//


Expand Down

0 comments on commit 8b14ce6

Please sign in to comment.