Skip to content

Commit

Permalink
fixed some typo in ex15.28.29/main.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
XDXX committed Sep 16, 2015
1 parent cd49012 commit fd8a9f2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ch15/ex15.28.29/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@
// Thus, the virtual net_price functions called are Quote::net_price. As a result,
// no discount was applied. The outcome was 9090
//
// The obejcts held for this exercise are smart pointers to the Quote objects.In this
// case, ppolymorphism happened as expected.The actual virtual functions being called
// The objects held for this exercise are smart pointers to the Quote objects.In this
// case, polymorphism happened as expected.The actual virtual functions being called
// are Bulk_quote::net_price that ensure discount is applied.Thus, the outcome is 6363.
// It can be found that 30% dicount has been applied to the price calculation.
// It can be found that 30% discount has been applied to the price calculation.
//
//
// If there is no discrepancy, explain why there isn’t one.
Expand Down

0 comments on commit fd8a9f2

Please sign in to comment.