mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
Fix some bad doc comment links to IoCManager.Resolve{T}()
This commit is contained in:
@@ -4,7 +4,7 @@ using System.Runtime.Serialization;
|
||||
namespace Robust.Shared.IoC.Exceptions
|
||||
{
|
||||
/// <summary>
|
||||
/// Thrown by <see cref="IoCManager.Resolve{T}"/> if one attempts to resolve an interface that isn't registered.
|
||||
/// Thrown by <see cref="IoCManager.Resolve{T}()"/> if one attempts to resolve an interface that isn't registered.
|
||||
/// </summary>
|
||||
[Serializable]
|
||||
[Virtual]
|
||||
|
||||
@@ -4,7 +4,7 @@ namespace Robust.Shared.IoC
|
||||
/// If implemented on a type instantiated by IoC,
|
||||
/// <see cref="IPostInjectInit.PostInject" /> will be called after all dependencies have been injected.
|
||||
/// Do not assume any order in the initialization of other managers,
|
||||
/// Or the availability of things through <see cref="IoCManager.Resolve{T}" />
|
||||
/// Or the availability of things through <see cref="IoCManager.Resolve{T}()" />
|
||||
/// </summary>
|
||||
/// <seealso cref="IoCManager" />
|
||||
/// <seealso cref="DependencyAttribute" />
|
||||
|
||||
@@ -322,7 +322,7 @@ namespace Robust.UnitTesting
|
||||
|
||||
/// <summary>
|
||||
/// Resolve a dependency inside the instance.
|
||||
/// This works identical to <see cref="IoCManager.Resolve{T}"/>.
|
||||
/// This works identical to <see cref="IoCManager.Resolve{T}()"/>.
|
||||
/// </summary>
|
||||
/// <exception cref="InvalidOperationException">
|
||||
/// Thrown if you did not ensure that the instance is idle via <see cref="WaitIdleAsync"/> first.
|
||||
|
||||
Reference in New Issue
Block a user