diff --git a/Part-003/public_html/js/main.js b/Part-003/public_html/js/main.js
index e9d9048..d445a7f 100644
--- a/Part-003/public_html/js/main.js
+++ b/Part-003/public_html/js/main.js
@@ -1,7 +1,7 @@
require.config({
baseUrl: './',
paths: {
- buyer: 'js/modules/buyer'
+ buyer: 'js/buyer'
},
waitSeconds: 2
});
@@ -10,4 +10,4 @@ require(['buyer'], function (buyer) {
console.log(name + " enters the system");
var result = buyer.buyThing(name);
console.log("sale success " + result);
-});
\ No newline at end of file
+});