From ca6218cf652396fe7fdd368d49337ce591474e76 Mon Sep 17 00:00:00 2001 From: Arthur Juliani Date: Fri, 15 Jun 2018 13:46:30 -0700 Subject: [PATCH] Fix typo --- .../Assets/ML-Agents/Scripts/CoreBrainInternal.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/unity-environment/Assets/ML-Agents/Scripts/CoreBrainInternal.cs b/unity-environment/Assets/ML-Agents/Scripts/CoreBrainInternal.cs index 33a9d815c2..493a814fd1 100644 --- a/unity-environment/Assets/ML-Agents/Scripts/CoreBrainInternal.cs +++ b/unity-environment/Assets/ML-Agents/Scripts/CoreBrainInternal.cs @@ -517,12 +517,13 @@ public void OnInspector() #endif #if !ENABLE_TENSORFLOW && UNITY_EDITOR EditorGUILayout.HelpBox( - "You need to install and enable the TensorflowSharp plugin in" + + "You need to install and enable the TensorflowSharp plugin in " + "order to use the internal brain.", MessageType.Error); if (GUILayout.Button("Show me how")) { Application.OpenURL( - "https://github.com/Unity-Technologies/ml-agents/blob/master/docs/Getting-Started-with-Balance-Ball.md#embedding-the-trained-brain-into-the-unity-environment-experimental"); + "https://github.com/Unity-Technologies/ml-agents/blob/master/docs/Getting-Started-with-" + + "Balance-Ball.md#embedding-the-trained-brain-into-the-unity-environment-experimental"); } #endif }