Skip to content

Commit 3f90f85

Browse files
authored
Merge pull request #3677 from thalbern/user/bethalha/cref_fix
fixed docfx errors
2 parents 4ebcc3c + 6d3e75f commit 3f90f85

File tree

21 files changed

+58
-46
lines changed

21 files changed

+58
-46
lines changed

Assets/MixedRealityToolkit.Examples/Demos/Audio/Scripts/obj.meta

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Assets/MixedRealityToolkit.Providers/OpenVR/OpenVRDeviceManager.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ public class OpenVRDeviceManager : UnityJoystickManager
2020
/// <summary>
2121
/// Constructor.
2222
/// </summary>
23-
/// <param name="registrar">The <see cref="IMixedRealityServiceRegistrar"/> instance that loaded the service.</param>
24-
/// <param name="spatialAwarenessSystem">The <see cref="IMixedRealitySpatialAwarenessSystem"/> to which the observer is providing data.</param>
23+
/// <param name="registrar">The <see cref="Core.Interfaces.IMixedRealityServiceRegistrar"/> instance that loaded the service.</param>
24+
/// <param name="spatialAwarenessSystem">The <see cref="Core.Interfaces.SpatialAwarenessSystem.IMixedRealitySpatialAwarenessSystem"/> to which the observer is providing data.</param>
2525
/// <param name="name">Friendly name of the service.</param>
2626
/// <param name="priority">Service priority. Used to determine order of instantiation.</param>
2727
/// <param name="profile">The service's configuration profile.</param>

Assets/MixedRealityToolkit.Providers/WindowsMixedReality/WindowsMixedRealityDeviceManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public class WindowsMixedRealityDeviceManager : BaseDeviceManager, IMixedReality
2323
/// <summary>
2424
/// Constructor.
2525
/// </summary>
26-
/// <param name="registrar">The <see cref="IMixedRealityServiceRegistrar"/> instance that loaded the service.</param>
26+
/// <param name="registrar">The <see cref="Core.Interfaces.IMixedRealityServiceRegistrar"/> instance that loaded the service.</param>
2727
/// <param name="name">Friendly name of the service.</param>
2828
/// <param name="priority">Service priority. Used to determine order of instantiation.</param>
2929
/// <param name="profile">The service's configuration profile.</param>

Assets/MixedRealityToolkit.Providers/WindowsMixedReality/WindowsMixedRealitySpatialMeshObserver.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public class WindowsMixedRealitySpatialMeshObserver : BaseSpatialObserver, IMixe
2121
/// <summary>
2222
/// Constructor.
2323
/// </summary>
24-
/// <param name="registrar">The <see cref="IMixedRealityServiceRegistrar"/> instance that loaded the service.</param>
24+
/// <param name="registrar">The <see cref="Core.Interfaces.IMixedRealityServiceRegistrar"/> instance that loaded the service.</param>
2525
/// <param name="name">Friendly name of the service.</param>
2626
/// <param name="priority">Service priority. Used to determine order of instantiation.</param>
2727
/// <param name="profile">The service's configuration profile.</param>

Assets/MixedRealityToolkit.Providers/WindowsVoiceInput/WindowsDictationInputProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public class WindowsDictationInputProvider : BaseDeviceManager, IMixedRealityDic
2121
/// <summary>
2222
/// Constructor.
2323
/// </summary>
24-
/// <param name="registrar">The <see cref="IMixedRealityServiceRegistrar"/> instance that loaded the service.</param>
24+
/// <param name="registrar">The <see cref="Core.Interfaces.IMixedRealityServiceRegistrar"/> instance that loaded the service.</param>
2525
/// <param name="name">Friendly name of the service.</param>
2626
/// <param name="priority">Service priority. Used to determine order of instantiation.</param>
2727
/// <param name="profile">The service's configuration profile.</param>

Assets/MixedRealityToolkit.Providers/WindowsVoiceInput/WindowsSpeechInputProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public class WindowsSpeechInputProvider : BaseDeviceManager, IMixedRealitySpeech
2121
/// <summary>
2222
/// Constructor.
2323
/// </summary>
24-
/// <param name="registrar">The <see cref="IMixedRealityServiceRegistrar"/> instance that loaded the service.</param>
24+
/// <param name="registrar">The <see cref="Core.Interfaces.IMixedRealityServiceRegistrar"/> instance that loaded the service.</param>
2525
/// <param name="name">Friendly name of the service.</param>
2626
/// <param name="priority">Service priority. Used to determine order of instantiation.</param>
2727
/// <param name="profile">The service's configuration profile.</param>

Assets/MixedRealityToolkit/Attributes/obj.meta

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Assets/MixedRealityToolkit/Interfaces/InputSystem/IMixedRealityGazeProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public interface IMixedRealityGazeProvider
1616
bool Enabled { get; set; }
1717

1818
/// <summary>
19-
/// The <see cref="IMixedRealtyInputSystem"/> instance for which this object is providing gaze data.
19+
/// The <see cref="IMixedRealityInputSystem"/> instance for which this object is providing gaze data.
2020
/// </summary>
2121
IMixedRealityInputSystem InputSystem { set; }
2222

Assets/MixedRealityToolkit/Interfaces/Registrars/IMixedRealityServiceRegistrar.cs

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ bool RegisterService<T>(
3737
/// <summary>
3838
/// Unregisters a service of the specified type.
3939
/// </summary>
40-
/// <typeparam name="T">The interface type of the service to be unregistered (ex: IMixedRealityBoundarySystem).
40+
/// <typeparam name="T">The interface type of the service to be unregistered (ex: IMixedRealityBoundarySystem).</typeparam>
4141
/// <param name="name">The name of the service to unregister.</param>
4242
/// <returns>True if the service was successfully unregistered, false otherwise.</returns>
4343
/// <remarks>If the name argument is not especified, the first instance will be unregistered</remarks>
@@ -46,23 +46,23 @@ bool RegisterService<T>(
4646
/// <summary>
4747
/// Unregisters a service.
4848
/// </summary>
49-
/// <typeparam name="T">The interface type of the service to be unregistered (ex: IMixedRealityBoundarySystem).
49+
/// <typeparam name="T">The interface type of the service to be unregistered (ex: IMixedRealityBoundarySystem).</typeparam>
5050
/// <param name="service">The specific service instance to unregister.</param>
5151
/// <returns>True if the service was successfully unregistered, false otherwise.</returns>
5252
bool UnregisterService<T>(T serviceInstance) where T : IMixedRealityService;
5353

5454
/// <summary>
5555
/// Checks to see if a service of the specified type has been registered.
5656
/// </summary>
57-
/// <typeparam name="T">The interface type of the service (ex: IMixedRealityBoundarySystem).
57+
/// <typeparam name="T">The interface type of the service (ex: IMixedRealityBoundarySystem).</typeparam>
5858
/// <param name="name">The name of the service.</param>
5959
/// <returns>True if the service is registered, false otherwise.</returns>
6060
bool IsServiceRegistered<T>(string name = null) where T : IMixedRealityService;
6161

6262
/// <summary>
6363
/// Gets the instance of the registered service.
6464
/// </summary>
65-
/// <typeparam name="T">The interface type of the service (ex: IMixedRealityBoundarySystem).
65+
/// <typeparam name="T">The interface type of the service (ex: IMixedRealityBoundarySystem).</typeparam>
6666
/// <param name="name">The name of the service.</param>
6767
/// <param name="showLogs">Indicates whether or not diagnostic logging should be performed in case of an error</param>
6868
/// <returns>The registered service instance as the requested type.</returns>
@@ -71,7 +71,7 @@ bool RegisterService<T>(
7171
/// <summary>
7272
/// Gets the collection of the registered service instances matching the requested type.
7373
/// </summary>
74-
/// <typeparam name="T">The interface type of the service (ex: IMixedRealityBoundarySystem).
74+
/// <typeparam name="T">The interface type of the service (ex: IMixedRealityBoundarySystem).</typeparam>
7575
/// <param name="name">Friendly name of the service.</param>
7676
/// <returns>Read-only collection of the service instances, as the requested type.</returns>
7777
IReadOnlyList<T> GetServices<T>(string name = null) where T : IMixedRealityService;
@@ -90,7 +90,7 @@ bool RegisterService<T>(
9090
/// <summary>
9191
/// Registers a data provider of the specified type.
9292
/// </summary>
93-
/// <typeparam name="T">The interface type of the data provider to be registered.
93+
/// <typeparam name="T">The interface type of the data provider to be registered.</typeparam>
9494
/// <returns>True if the data provider was successfully registered, false otherwise.</returns>
9595
bool RegisterDataProvider<T>(
9696
Type concreteType,
@@ -100,7 +100,7 @@ bool RegisterDataProvider<T>(
100100
/// <summary>
101101
/// Unregisters a data provider of the specified type.
102102
/// </summary>
103-
/// <typeparam name="T">The interface type of the data provider to be unregistered.
103+
/// <typeparam name="T">The interface type of the data provider to be unregistered.</typeparam>
104104
/// <param name="name">The name of the data provider to unregister.</param>
105105
/// <returns>True if the data provider was successfully unregistered, false otherwise.</returns>
106106
/// <remarks>If the name argument is not specified, the first instance will be unregistered</remarks>
@@ -109,31 +109,31 @@ bool RegisterDataProvider<T>(
109109
/// <summary>
110110
/// Unregisters a data provider.
111111
/// </summary>
112-
/// <typeparam name="T">The interface type of the data provider to be unregistered.
112+
/// <typeparam name="T">The interface type of the data provider to be unregistered.</typeparam>
113113
/// <param name="service">The specific data provider instance to unregister.</param>
114114
/// <returns>True if the data provider was successfully unregistered, false otherwise.</returns>
115115
bool UnregisterDataProvider<T>(T dataProviderInstance) where T : IMixedRealityDataProvider;
116116

117117
/// <summary>
118118
/// Checks to see if a data provider of the specified type has been registered.
119119
/// </summary>
120-
/// <typeparam name="T">The interface type of the data provider.
120+
/// <typeparam name="T">The interface type of the data provider.</typeparam>
121121
/// <param name="name">The name of the service.</param>
122122
/// <returns>True if the data provider is registered, false otherwise.</returns>
123123
bool IsDataProviderRegistered<T>(string name = null) where T : IMixedRealityDataProvider;
124124

125125
/// <summary>
126126
/// Gets the instance of the registered data provider of the specified type.
127127
/// </summary>
128-
/// <typeparam name="T">The interface type of the data provider.
128+
/// <typeparam name="T">The interface type of the data provider.</typeparam>
129129
/// <param name="name">The name of the data provider.</param>
130130
/// <returns>The registered data provider instance as the requested type.</returns>
131131
T GetDataProvider<T>(string name = null) where T : IMixedRealityDataProvider;
132132

133133
/// <summary>
134134
/// Gets the collection of the registered data provider instances matching the requested type.
135135
/// </summary>
136-
/// <typeparam name="T">The interface type of the data provider.
136+
/// <typeparam name="T">The interface type of the data provider.</typeparam>
137137
/// <param name="name">The name of the data provider.</param>
138138
/// <returns>Read-only collection of the data provider instances, as the requested type.</returns>
139139
IReadOnlyList<T> GetDataProviders<T>(string name = null) where T : IMixedRealityDataProvider;

Assets/MixedRealityToolkit/Providers/BaseDeviceManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public class BaseDeviceManager : BaseExtensionService, IMixedRealityDeviceManage
1515
/// <summary>
1616
/// Constructor.
1717
/// </summary>
18-
/// <param name="registrar">The <see cref="IMixedRealityServiceRegistrar"/> instance that loaded the service.</param>
18+
/// <param name="registrar">The <see cref="Interfaces.IMixedRealityServiceRegistrar"/> instance that loaded the service.</param>
1919
/// <param name="name">Friendly name of the service.</param>
2020
/// <param name="priority">Service priority. Used to determine order of instantiation.</param>
2121
/// <param name="profile">The service's configuration profile.</param>

0 commit comments

Comments
 (0)