Skip to content

Commit 4ed90d2

Browse files
Merge pull request #2574 from keveleigh/SpellCheck
Quick (probably incomplete) spellcheck pass pre-alpha
2 parents 8b086ec + aee8301 commit 4ed90d2

File tree

25 files changed

+48
-48
lines changed

25 files changed

+48
-48
lines changed

Assets/MixedRealityToolkit-SDK/Features/Input/GazeProvider.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ public override bool TryGetPointerRotation(out Quaternion rotation)
212212

213213
#endregion IMixedRealityPointer Implementation
214214

215-
#region Monobehaiour Implementation
215+
#region MonoBehaviour Implementation
216216

217217
private void OnValidate()
218218
{
@@ -301,7 +301,7 @@ protected override void OnDisable()
301301
InputSystem.RaiseSourceLost(GazeInputSource);
302302
}
303303

304-
#endregion Monobehaiour Implementation
304+
#endregion MonoBehaviour Implementation
305305

306306
#region Utilities
307307

Assets/MixedRealityToolkit-SDK/Features/Input/Handlers/BaseInputHandler.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public bool IsFocusRequired
2323
set { isFocusRequired = value; }
2424
}
2525

26-
#region Monobehaviour Implementation
26+
#region MonoBehaviour Implementation
2727

2828
protected override void OnEnable()
2929
{
@@ -41,6 +41,6 @@ protected override void OnDisable()
4141
}
4242
}
4343

44-
#endregion Monobehaviour Implementation
44+
#endregion MonoBehaviour Implementation
4545
}
4646
}

Assets/MixedRealityToolkit-SDK/Features/Input/Handlers/DragAndDropHandler.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ private enum RotationModeEnum
7272
private IMixedRealityPointer currentPointer;
7373
private IMixedRealityInputSource currentInputSource;
7474

75-
#region Monobehavior Implemetation
75+
#region MonoBehaviour Implementation
7676

7777
private void Start()
7878
{
@@ -100,7 +100,7 @@ private void OnDestroy()
100100
}
101101
}
102102

103-
#endregion Monobehavior Implemetation
103+
#endregion MonoBehaviour Implementation
104104

105105
#region IMixedRealityPointerHandler Implementation
106106

Assets/MixedRealityToolkit-SDK/Features/Input/Handlers/SpeechInputHandler.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public class SpeechInputHandler : BaseInputHandler, IMixedRealitySpeechHandler
3131

3232
private readonly Dictionary<string, UnityEvent> responses = new Dictionary<string, UnityEvent>();
3333

34-
#region Monobehaviour Implementation
34+
#region MonoBehaviour Implementation
3535

3636
private void Start()
3737
{
@@ -60,7 +60,7 @@ private void Start()
6060
}
6161
}
6262

63-
#endregion Monobehaviour Implementation
63+
#endregion MonoBehaviour Implementation
6464

6565
#region IMixedRealitySpeechHandler Implementation
6666

Assets/MixedRealityToolkit-SDK/Features/UX/Scripts/Controllers/MixedRealityControllerVisualizer.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ void IMixedRealityInputHandler.OnPositionInputChanged(InputEventData<Vector2> ev
161161

162162
#endregion IMixedRealityInputHandler Implementation
163163

164-
#region Monobehaviour Implementation
164+
#region MonoBehaviour Implementation
165165

166166
/// <summary>
167167
/// When the visualizer is enabled, create any attached controllers in the scene.
@@ -191,7 +191,7 @@ protected override void OnDisable()
191191
base.OnDisable();
192192
}
193193

194-
#endregion Monobehaviour Implementation
194+
#endregion MonoBehaviour Implementation
195195

196196
#region Controller Visualization Methods
197197

Assets/MixedRealityToolkit-SDK/Features/UX/Scripts/Cursors/CursorModifier.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -220,13 +220,13 @@ void IMixedRealityFocusChangedHandler.OnFocusChanged(FocusEventData eventData) {
220220

221221
#endregion IMixedRealityFocusChangedHandler Implementation
222222

223-
#region Monobehaviour Implementation
223+
#region MonoBehaviour Implementation
224224

225225
private void OnValidate()
226226
{
227227
Debug.Assert(HostTransform.GetComponent<Collider>() != null, $"A collider component is required on {hostTransform.gameObject.name} for the cursor modifier component on {gameObject.name} to function properly.");
228228
}
229229

230-
#endregion Monobehaviour Implementaiton
230+
#endregion MonoBehaviour Implementaiton
231231
}
232232
}

Assets/MixedRealityToolkit-SDK/Features/UX/Scripts/Pointers/BaseControllerPointer.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ public virtual void SetCursor(GameObject newCursor = null)
121121
}
122122
}
123123

124-
#region Monobehaviour Implementation
124+
#region MonoBehaviour Implementation
125125

126126
protected override void OnEnable()
127127
{
@@ -159,7 +159,7 @@ protected override void OnDisable()
159159
InputSystem.FocusProvider.UnregisterPointer(this);
160160
}
161161

162-
#endregion Monobehaviour Implementation
162+
#endregion MonoBehaviour Implementation
163163

164164
#region IMixedRealityPointer Implementation
165165

Assets/MixedRealityToolkit-SDK/Features/UX/Scripts/Pointers/LinePointer.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ private void CheckInitialization()
9494
}
9595
}
9696

97-
#region Monobehaviour Implementation
97+
#region MonoBehaviour Implementation
9898

9999
protected virtual void OnValidate()
100100
{
@@ -107,7 +107,7 @@ protected override void OnEnable()
107107
CheckInitialization();
108108
}
109109

110-
#endregion Monobehaviour Implementation
110+
#endregion MonoBehaviour Implementation
111111

112112
#region IMixedRealityPointer Implementation
113113

Assets/MixedRealityToolkit-SDK/Features/UX/Scripts/Pointers/ParabolicTeleportPointer.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public class ParabolicTeleportPointer : TeleportPointer
2525
[SerializeField]
2626
private ParabolaPhysicalLineDataProvider parabolicLineData;
2727

28-
#region Monobehaviour Implementation
28+
#region MonoBehaviour Implementation
2929

3030
protected override void OnValidate()
3131
{
@@ -60,7 +60,7 @@ private void EnsureSetup()
6060
}
6161
}
6262

63-
#endregion Monobehaviour Implementation
63+
#endregion MonoBehaviour Implementation
6464

6565
#region IMixedRealityPointer Implementation
6666

Assets/MixedRealityToolkit/_Core/Definitions/BoundarySystem/MixedRealityBoundaryVisualizationProfile.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public class MixedRealityBoundaryVisualizationProfile : ScriptableObject
3939
private Vector3 floorPlaneScale = new Vector3(10f, 10f, 1f);
4040

4141
/// <summary>
42-
/// The the size at which to display the rectangular floor plane <see cref="GameObject"/>.
42+
/// The size at which to display the rectangular floor plane <see cref="GameObject"/>.
4343
/// </summary>
4444
public Vector3 FloorPlaneScale => floorPlaneScale;
4545
}

0 commit comments

Comments
 (0)