@@ -76,7 +76,7 @@ public void setRackupScript(String rackupScript) {
7676 /**
7777 * Initialize this factory using the given context.
7878 *
79- * NOTE: exception handling is left to the outer factory.
79+ * @implNote exception handling is left to the outer factory.
8080 * @param rackContext the RackContext
8181 */
8282 @ Override
@@ -94,7 +94,7 @@ public void init(final RackContext rackContext) {
9494 /**
9595 * Creates a new application instance (without initializing it).
9696 *
97- * NOTE: exception handling is left to the outer factory.
97+ * @implNote exception handling is left to the outer factory.
9898 * @return new application instance
9999 */
100100 @ Override
@@ -109,7 +109,7 @@ public IRubyObject create(Ruby runtime) {
109109 /**
110110 * Creates a new application and initializes it.
111111 *
112- * NOTE: exception handling is left to the outer factory.
112+ * @implNote exception handling is left to the outer factory.
113113 * @return new, initialized application
114114 */
115115 @ Override
@@ -122,7 +122,7 @@ public RackApplication getApplication() {
122122 /**
123123 * Destroys the application (assumably) created by this factory.
124124 *
125- * NOTE: exception handling is left to the outer factory.
125+ * @implNote exception handling is left to the outer factory.
126126 * @param app the application to "release"
127127 */
128128 @ Override
@@ -352,9 +352,9 @@ protected void loadJRubyRack(final Ruby runtime) {
352352 /**
353353 * Initializes the runtime (exports the context, boots the Rack handler).
354354 *
355- * NOTE: visible due to specs
355+ * @apiNote Internal API, only visible due tests.
356356 *
357- * @param runtime
357+ * @param runtime the JRuby runtime
358358 */
359359 public void initRuntime (final Ruby runtime ) {
360360 loadJRubyRack (runtime );
@@ -399,11 +399,11 @@ public void initRuntime(final Ruby runtime) {
399399 /**
400400 * Checks and sets the required Rack version (if specified as a magic comment).
401401 *
402- * e.g. # rack.version: ~> 1.3.6
402+ * e.g. # rack.version: = 1.3.6
403403 *
404- * NOTE: (package) visible due specs
404+ * @apiNote Internal API, only visible due tests.
405405 *
406- * @param runtime
406+ * @param runtime the JRuby runtime
407407 * @return the rack version requirement
408408 */
409409 public String checkAndSetRackVersion (final Ruby runtime ) {
0 commit comments