@@ -22,9 +22,12 @@ These are some of the common use cases for creating multiple kernels:
2222 one would only respond to the API requests, loading less bundles and enabling
2323 less features;
2424* A highly sensitive application could define two kernels. The first one would
25- only load the routes that match the parts of the application exposed to the
26- public. The second kernel would load the rest of the application and its
27- access would be protected by the web server.
25+ only load the routes that match the parts of the application exposed publicly.
26+ The second kernel would load the rest of the application and its access would
27+ be protected by the web server;
28+ * A micro-services oriented application could define several kernels to
29+ enable/disable services selectively turning a traditional monolith application
30+ into several micro-applications.
2831
2932Adding a new Kernel to the Application
3033--------------------------------------