We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e473e1a commit 16af3f5Copy full SHA for 16af3f5
1-js/09-classes/07-mixins/article.md
@@ -69,11 +69,7 @@ let sayMixin = {
69
};
70
71
let sayHiMixin = {
72
-<<<<<<< HEAD
73
- __proto__: sayMixin, // (ou nous pourrions utiliser Object.create pour définir le prototype ici)
74
-=======
75
- __proto__: sayMixin, // (or we could use Object.setPrototypeOf to set the prototype here)
76
->>>>>>> 97ef86242f9f236b13152e1baf52a55c4db8728a
+ __proto__: sayMixin, // (ou nous pourrions utiliser Object.setPrototypeOf pour définir le prototype ici)
77
78
sayHi() {
79
*!*
0 commit comments