Skip to content

Commit 3b203a7

Browse files
committed
Fix crefs
1 parent d8c893a commit 3b203a7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Assets/MixedRealityToolkit/Inspectors/Profiles/DataProviderAccessServiceInspector.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,14 +28,14 @@ protected class ServiceConfigurationProperties
2828
}
2929

3030
/// <summary>
31-
/// Returns <see cref="SerializedProperty"/> object that wraps references to array of <see cref="IMixedRealityServiceConfiguration"/> stored on the inspected target object
31+
/// Returns SerializedProperty object that wraps references to array of <see cref="IMixedRealityServiceConfiguration"/> stored on the inspected target object
3232
/// </summary>
3333
protected abstract SerializedProperty GetDataProviderConfigurationList();
3434

3535
/// <summary>
36-
/// Builds <see cref="ServiceConfigurationProperties"/> container object with <see cref="SerializedProperty"/> references to associated properties on the supplied <see cref="IMixedRealityServiceConfiguration"/> reference
36+
/// Builds <see cref="ServiceConfigurationProperties"/> container object with SerializedProperty references to associated properties on the supplied <see cref="IMixedRealityServiceConfiguration"/> reference
3737
/// </summary>
38-
/// <param name="providerEntry"><see cref="SerializedProperty"/> reference pointing to <see cref="IMixedRealityServiceConfiguration"/> instance</param>
38+
/// <param name="providerEntry">SerializedProperty reference pointing to <see cref="IMixedRealityServiceConfiguration"/> instance</param>
3939
protected abstract ServiceConfigurationProperties GetDataProviderConfigurationProperties(SerializedProperty providerEntry);
4040

4141
/// <summary>
@@ -64,7 +64,7 @@ protected override void OnEnable()
6464

6565
/// <summary>
6666
/// Adds a new data provider profile entry (i.e <see cref="IMixedRealityServiceConfiguration"/>) to array list of target object
67-
/// Utilizes GetDataProviderConfigurationList() to get <see cref="SerializedProperty"/> object that represents array to insert against
67+
/// Utilizes GetDataProviderConfigurationList() to get SerializedProperty object that represents array to insert against
6868
/// </summary>
6969
protected virtual void AddDataProvider()
7070
{
@@ -86,7 +86,7 @@ protected virtual void AddDataProvider()
8686

8787
/// <summary>
8888
/// Removed given index item from <see cref="IMixedRealityServiceConfiguration"/> array list.
89-
/// Utilizes GetDataProviderConfigurationList() to get <see cref="SerializedProperty"/> object that represents array to delete against.
89+
/// Utilizes GetDataProviderConfigurationList() to get SerializedProperty object that represents array to delete against.
9090
/// </summary>
9191
protected virtual void RemoveDataProvider(int index)
9292
{

0 commit comments

Comments
 (0)