Skip to content

Commit b2140ab

Browse files
committed
Spell check
1 parent 1c30301 commit b2140ab

File tree

45 files changed

+76
-76
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+76
-76
lines changed

Assets/MRTK/Core/Definitions/Devices/DeviceInputType.cs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ public enum DeviceInputType
1414
Gaze,
1515
Voice,
1616
/// <summary>
17-
/// 6 Dof Pointer with position and rotation.
17+
/// 6-DoF pointer with position and rotation.
1818
/// </summary>
1919
SpatialPointer,
2020
/// <summary>
21-
/// 3 Dof Pointer with only position.
21+
/// 3-DoF pointer with only position.
2222
/// </summary>
2323
PointerPosition,
2424
/// <summary>
25-
/// 3 Dof Pointer with only rotation.
25+
/// 3-DoF pointer with only rotation.
2626
/// </summary>
2727
PointerRotation,
2828
PointerClick,
@@ -32,18 +32,18 @@ public enum DeviceInputType
3232
Trigger,
3333
TriggerTouch,
3434
TriggerNearTouch,
35-
// TriggerPress, in some cases, maps to the Grab gesture.
35+
// TriggerPress, in some cases, maps to the grab/grasp gesture.
3636
TriggerPress,
3737
/// <summary>
38-
/// 6 DoF Grip with position and rotation.
38+
/// 6-DoF grip with position and rotation.
3939
/// </summary>
4040
SpatialGrip,
4141
/// <summary>
42-
/// 3 DoF Grip with only position.
42+
/// 3-DoF grip with only position.
4343
/// </summary>
4444
GripPosition,
4545
/// <summary>
46-
/// 3 Dof Grip with only rotation.
46+
/// 3-DoF grip with only rotation.
4747
/// </summary>
4848
GripRotation,
4949
ThumbStick,
@@ -55,7 +55,7 @@ public enum DeviceInputType
5555
TouchpadNearTouch,
5656
TouchpadPress,
5757
/// <summary>
58-
/// Select maps to the Pinch/Air Tap gesture
58+
/// Select, in some cases, maps to the pinch/airtap gesture.
5959
/// </summary>
6060
Select,
6161
Start,
@@ -92,7 +92,7 @@ public enum DeviceInputType
9292
Grip,
9393
GripTouch,
9494
GripNearTouch,
95-
// GripPress, in some cases, maps to the Grab gesture.
95+
// GripPress, in some cases, maps to the grab/grasp gesture.
9696
GripPress,
9797
}
9898
}

Assets/MRTK/Core/Definitions/Devices/MixedRealityInteractionMapping.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -396,9 +396,9 @@ public Vector2 Vector2Data
396396
}
397397

398398
/// <summary>
399-
/// The ThreeDof Vector3 Position data value.
399+
/// The ThreeDoF Vector3 Position data value.
400400
/// </summary>
401-
/// <remarks>Only supported for a ThreeDof mapping axis type</remarks>
401+
/// <remarks>Only supported for a ThreeDoF mapping axis type</remarks>
402402
public Vector3 PositionData
403403
{
404404
get
@@ -421,9 +421,9 @@ public Vector3 PositionData
421421
}
422422

423423
/// <summary>
424-
/// The ThreeDof Quaternion Rotation data value.
424+
/// The ThreeDoF Quaternion Rotation data value.
425425
/// </summary>
426-
/// <remarks>Only supported for a ThreeDof mapping axis type</remarks>
426+
/// <remarks>Only supported for a ThreeDoF mapping axis type</remarks>
427427
public Quaternion RotationData
428428
{
429429
get
@@ -446,7 +446,7 @@ public Quaternion RotationData
446446
/// <summary>
447447
/// The Pose data value.
448448
/// </summary>
449-
/// <remarks>Only supported for a SixDof mapping axis type</remarks>
449+
/// <remarks>Only supported for a SixDoF mapping axis type</remarks>
450450
public MixedRealityPose PoseData
451451
{
452452
get

Assets/MRTK/Core/Definitions/SpatialAwareness/Experimental/SpatialAwarenessSceneObject.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
// Copyright (c) Microsoft Corporation. All rights reserved.
2-
// Licensed under the MIT License. See LICENSE in the project root for license information.
1+
// Copyright (c) Microsoft Corporation.
2+
// Licensed under the MIT License.
33

44
using Microsoft.MixedReality.Toolkit.SpatialAwareness;
55
using System.Collections.Generic;
@@ -138,7 +138,7 @@ public class QuadData
138138
public Vector2 Extents { get; set; }
139139

140140
/// <summary>
141-
/// The occulusion mask of the quad.
141+
/// The occlusion mask of the quad.
142142
/// </summary>
143143
public byte[] OcclusionMask { get; set; }
144144

Assets/MRTK/Core/Definitions/Utilities/MixedRealityPose.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public MixedRealityPose(Quaternion rotation)
3838
}
3939

4040
/// <summary>
41-
/// The default value for a Six Dof Transform.
41+
/// The default value for a Six DoF Transform.
4242
/// </summary>
4343
/// <returns>
4444
/// <see href="https://docs.unity3d.com/ScriptReference/Vector3-zero.html">Vector3.zero</see> and <see href="https://docs.unity3d.com/ScriptReference/Quaternion-identity.html">Quaternion.identity</see>.

Assets/MRTK/Core/Definitions/Utilities/MixedRealityTransform.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ public static MixedRealityTransform NewScale(Vector3 scale)
5454
}
5555

5656
/// <summary>
57-
/// The default value for a Six Dof Transform.
57+
/// The default value for a Six DoF Transform.
5858
/// </summary>
5959
public static MixedRealityTransform Identity { get; } = new MixedRealityTransform(Vector3.zero, Quaternion.identity, Vector3.one);
6060

Assets/MRTK/Core/Inspectors/MixedRealityToolkitFacadeHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ namespace Microsoft.MixedReality.Toolkit.Utilities.Facades
1313
/// Links service facade objects to active services.
1414
/// </summary>
1515
/// <remarks>
16-
/// <para>This feature is is being deprecated in 2.5 and will be removed in a future release.
16+
/// <para>This feature is being deprecated in 2.5 and will be removed in a future release.
1717
/// The code that remains will actively seek to remove existing facades in scenes to ensure that
1818
/// developers that update to 2.5 will get their scenes cleaned up appropriately.</para>
1919
/// </remarks>

Assets/MRTK/Core/Inspectors/Profiles/MixedRealityControllerMappingProfileInspector.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,7 +352,7 @@ private void RenderControllerList(SerializedProperty controllerList)
352352
/// <summary>
353353
/// Resets the input actions of the controller mapping according to the mapping's GetDefaultInteractionMappings() function
354354
/// </summary>
355-
/// <param name="controllerMapping">A reference to the controller mapping struct geing reset</param>
355+
/// <param name="controllerMapping">A reference to the controller mapping struct getting reset</param>
356356
private void ResetInputActions(ref MixedRealityControllerMapping controllerMapping)
357357
{
358358
controllerMapping.SetDefaultInteractionMapping(true);

Assets/MRTK/Core/Inspectors/Utilities/InspectorUIUtility.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -710,7 +710,7 @@ static public bool DrawScriptableFoldout<T>(SerializedProperty scriptable, strin
710710

711711
/// <summary>
712712
/// Draws a foldout enlisting all components (or derived types) of the given type attached to the passed gameobject.
713-
/// Adds a button for adding any of the component (or dervied types) and a follow button to highlight existing attached components.
713+
/// Adds a button for adding any of the component (or derived types) and a follow button to highlight existing attached components.
714714
/// </summary>
715715
static public bool DrawComponentTypeFoldout<T>(GameObject gameObject, bool isExpanded, string typeDescription) where T : MonoBehaviour
716716
{

Assets/MRTK/Core/Services/MixedRealityToolkit.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,11 +87,11 @@ public bool IsActiveInstance
8787
/// </summary>
8888
/// <remarks>
8989
/// <para>If changing the Active profile prior to the initialization (i.e. Awake()) of <see cref="MixedRealityToolkit"/> is desired,
90-
/// call the static funtion <see cref="SetProfileBeforeInitialization(MixedRealityToolkitConfigurationProfile)"/> instead.</para>
90+
/// call the static function <see cref="SetProfileBeforeInitialization(MixedRealityToolkitConfigurationProfile)"/> instead.</para>
9191
/// <para>When setting the ActiveProfile during runtime, the destroy of the currently running services will happen after the last LateUpdate()
9292
/// of all services, and the instantiation and initialization of the services associated with the new profile will happen before the
9393
/// first Update() of all services.</para>
94-
/// <para>A noticable application hesitation may occur during this process. Also any script with higher priority than this can enter its Update
94+
/// <para>A noticeable application hesitation may occur during this process. Also any script with higher priority than this can enter its Update
9595
/// before the new profile is properly setup.</para>
9696
/// <para>You are strongly recommended to see
9797
/// <see href="https://docs.microsoft.com/windows/mixed-reality/mrtk-unity/configuration/mixed-reality-configuration-guide#changing-profiles-at-runtime">here</see>

Assets/MRTK/Core/Utilities/DebugUtilities.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ public static void Log(string message)
124124
/// Logs the given message to the Unity console and player log if verbose logging is enabled.
125125
/// </summary>
126126
/// <remarks>
127-
/// <para>If you are doing string concatentation or manipulation, use LogVerboseFormat
127+
/// <para>If you are doing string concatenation or manipulation, use LogVerboseFormat
128128
/// that formats the string, as that will not allocate memory when verbose logging is enabled.</para>
129129
///
130130
/// <para>For example, don't do:

0 commit comments

Comments
 (0)