Skip to content

Commit 9929db9

Browse files
committed
appskeleton: fix typo
1 parent 81aedc7 commit 9929db9

File tree

1 file changed

+1
-1
lines changed
  • puremvc-haxe-demo-feathersui-appskeleton/src/org/puremvc/haxe/demos/feathersui/appskeleton/view

1 file changed

+1
-1
lines changed

puremvc-haxe-demo-feathersui-appskeleton/src/org/puremvc/haxe/demos/feathersui/appskeleton/view/MainScreenMediator.hx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ class MainScreenMediator extends Mediator implements IMediator {
7373
mainScreen.myText1 = localeProxy.getText(LocaleKeyEnum.HOW_TO_READ_CONFIG_VALUES);
7474

7575
var myHtmlText = "";
76-
myHtmlText += '<b>simple value:</b> configProxy.getValue( ConfigKeyEnum.KEY_NAME ) = ${configProxy.getValue(ConfigKeyEnum.OTHER_KEY_NAME)}<br><br>';
76+
myHtmlText += '<b>simple value:</b> configProxy.getValue( ConfigKeyEnum.KEY_NAME ) = ${configProxy.getValue(ConfigKeyEnum.KEY_NAME)}<br><br>';
7777
myHtmlText += '<b>long text value:</b> configProxy.getValue( ConfigKeyEnum.OTHER_KEY_NAME ) = ${configProxy.getValue(ConfigKeyEnum.OTHER_KEY_NAME)}<br><br>';
7878
myHtmlText += '<b>number value:</b> configProxy.getNumber( ConfigKeyEnum.NUMBER_TEST ) = ${configProxy.getNumber(ConfigKeyEnum.NUMBER_TEST)}<br><br>';
7979
myHtmlText += '<b>boolean value:</b> configProxy.getBoolean( ConfigKeyEnum.BOOLEAN_TEST ) = ${configProxy.getBoolean(ConfigKeyEnum.BOOLEAN_TEST)}<br><br>';

0 commit comments

Comments
 (0)