Skip to content

Commit a41bb93

Browse files
authored
Fixes the other two typos
1 parent 0d9beed commit a41bb93

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/static/patterns/behavioral_observer.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@ var fees = {
4040
}
4141
};
4242
43-
var proft = {
43+
var profit = {
4444
update: function(product) {
4545
product.price = product.price * 2;
4646
}
4747
};
4848
49-
module.exports = [Product, fees, proft];`,
49+
module.exports = [Product, fees, profit];`,
5050
codeES6: `class Product {
5151
constructor() {
5252
this.price = 0;

0 commit comments

Comments
 (0)