Skip to content

Commit bd60415

Browse files
Fix type in comment
1 parent 2021716 commit bd60415

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ng-appserver/src/main/java/ng/appserver/NGApplication.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ public static <E extends NGApplication> E runAndReturn( final String[] args, fin
162162
// The application class' package gets added by default // FIXME: Don't like this Hugi 2022-10-10
163163
NGElementUtils.addPackage( applicationClass.getPackageName() );
164164

165-
// FIXME: Registering for the instance stopper to work. We neeshould to convert NGAdminAction to routes // Hugi 2025-03-16
165+
// FIXME: Registering for the instance stopper to work. Horrid stuff. We need to convert NGAdminAction to routes // Hugi 2025-03-16
166166
NGElementUtils.addClass( NGAdminAction.class );
167167

168168
// FIXME: Eventually the adaptor startup should probably be done by the user
@@ -654,7 +654,7 @@ public void terminate() {
654654
/**
655655
* @return The named component, where [componentName] can be either the component's simple class name or full class name.
656656
*
657-
* CHECKME: The implementation of this method is in elementManager, we're currently nly keeping this method around for API compatibility with older projects.
657+
* CHECKME: The implementation of this method is in elementManager, we're currently only keeping this method around for API compatibility with older projects.
658658
*/
659659
public NGComponent pageWithName( final String componentName, final NGContext context ) {
660660
return elementManager().pageWithName( componentName, context );
@@ -663,7 +663,7 @@ public NGComponent pageWithName( final String componentName, final NGContext con
663663
/**
664664
* @return A new instance of [componentClass] in the given [context]
665665
*
666-
* CHECKME: The implementation of this method is in elementManager, we're currently nly keeping this method around for API compatibility with older projects.
666+
* CHECKME: The implementation of this method is in elementManager, we're currently only keeping this method around for API compatibility with older projects.
667667
*/
668668
public <E extends NGComponent> E pageWithName( final Class<E> componentClass, final NGContext context ) {
669669
return elementManager().pageWithName( componentClass, context );

0 commit comments

Comments
 (0)