Skip to content

Commit da762ac

Browse files
committed
Fix strings
1 parent 0bd09a8 commit da762ac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Assets/MixedRealityToolkit/Inspectors/Profiles/MixedRealityToolkitConfigurationProfileInspector.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -446,14 +446,14 @@ protected void CheckSystemConfiguration(string service, SystemType systemType, b
446446
{
447447
if (systemType?.Type == null || !validProfile)
448448
{
449-
EditorGUILayout.HelpBox(service + " is enabled but will not be initialized because the System Type and/or Profile is not set.", MessageType.Warning);
449+
EditorGUILayout.HelpBox($"{service} is enabled but will not be initialized because the System Type and/or Profile is not set.", MessageType.Warning);
450450
}
451451
}
452452

453453
protected static void RenderSystemDisabled(string service)
454454
{
455455
EditorGUILayout.Space();
456-
EditorGUILayout.HelpBox("The " + service + " is disabled.\n\nThis module will not be loaded and thus none of it's feature will be available at runtime.", MessageType.Info);
456+
EditorGUILayout.HelpBox($"The {service} is disabled.\n\nThis module will not be loaded and thus none of it's feature will be available at runtime.", MessageType.Info);
457457
EditorGUILayout.Space();
458458
}
459459

0 commit comments

Comments
 (0)