diff --git a/app/server/appsmith-server/src/main/java/com/appsmith/server/controllers/ApplicationController.java b/app/server/appsmith-server/src/main/java/com/appsmith/server/controllers/ApplicationController.java index e44a194786..3a88a2d4a6 100644 --- a/app/server/appsmith-server/src/main/java/com/appsmith/server/controllers/ApplicationController.java +++ b/app/server/appsmith-server/src/main/java/com/appsmith/server/controllers/ApplicationController.java @@ -79,7 +79,7 @@ public class ApplicationController extends BaseController> publish(@PathVariable String applicationId) { return applicationPageService.publish(applicationId) .map(application -> { - // This even should parallel a similar even sent from the client, so we want it to be sent by the + // This event should parallel a similar even sent from the client, so we want it to be sent by the // controller and not the service method. applicationPageService.sendApplicationPublishedEvent(application); // This will only be called when the publishing was successful, so we can always return `true` here.