Skip to content

Commit

Permalink
Remove dead links in XML comments to documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
jonorossi committed Oct 25, 2018
1 parent a02db66 commit 34dcf9b
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/Castle.Windsor/MicroKernel/DefaultKernel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -516,7 +516,7 @@ public virtual bool HasComponent(Type serviceType)
/// Registers the components with the <see cref = "IKernel" />. The instances of <see cref = "IRegistration" /> are produced by fluent registration API. Most common entry points are
/// <see cref = "Component.For{TService}" /> method to register a single type or (recommended in most cases) <see cref = "Classes.FromAssembly(Assembly)" />. Let the Intellisense drive you through the
/// fluent
/// API past those entry points. For details see the documentation at http://j.mp/WindsorApi
/// API past those entry points.
/// </summary>
/// <example>
/// <code>kernel.Register(Component.For&lt;IService&gt;().ImplementedBy&lt;DefaultService&gt;().LifestyleTransient());</code>
Expand Down
2 changes: 1 addition & 1 deletion src/Castle.Windsor/MicroKernel/IKernel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ IKernel AddFacility<T>(Action<T> onCreate)
/// Registers the components with the <see cref = "IKernel" />. The instances of <see cref = "IRegistration" /> are produced by fluent registration API.
/// Most common entry points are <see cref = "Component.For{TService}" /> method to register a single type or (recommended in most cases)
/// <see cref = "Classes.FromAssembly(Assembly)" />.
/// Let the Intellisense drive you through the fluent API past those entry points. For details see the documentation at http://j.mp/WindsorApi
/// Let the Intellisense drive you through the fluent API past those entry points.
/// </summary>
/// <example>
/// <code>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ namespace Castle.Windsor.Diagnostics

/// <summary>
/// Detects components that are not extending Windsor's infrastructure yet depend on the container which usually means they use the container as service locator
/// which is a bad practice and should be avoided. Consult the documentation for more details: http://j.mp/WindsorSL
/// which is a bad practice and should be avoided.
/// </summary>
public interface IUsingContainerAsServiceLocatorDiagnostic : IDiagnostic<IHandler[]>
{
Expand Down
7 changes: 3 additions & 4 deletions src/Castle.Windsor/Windsor/IWindsorContainer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@ namespace Castle.Windsor
using Castle.Windsor.Installer;

/// <summary>
/// The <c>IWindsorContainer</c> interface exposes all the
/// functionality the Windsor implements.
/// The <c>IWindsorContainer</c> interface exposes all the functionality that Windsor implements.
/// </summary>
public interface IWindsorContainer : IDisposable
{
Expand Down Expand Up @@ -84,7 +83,7 @@ IWindsorContainer AddFacility<TFacility>(Action<TFacility> onCreate)
IWindsorContainer GetChildContainer(string name);

/// <summary>
/// Runs the <paramref name = "installers" /> so that they can register components in the container. For details see the documentation at http://j.mp/WindsorInstall
/// Runs the <paramref name = "installers" /> so that they can register components in the container.
/// </summary>
/// <remarks>
/// In addition to instantiating and passing every installer inline you can use helper methods on <see
Expand All @@ -108,7 +107,7 @@ IWindsorContainer AddFacility<TFacility>(Action<TFacility> onCreate)
/// Registers the components with the <see cref = "IWindsorContainer" />. The instances of <see cref = "IRegistration" /> are produced by fluent registration API.
/// Most common entry points are <see cref = "Component.For{TService}" /> method to register a single type or (recommended in most cases)
/// <see cref = "Classes.FromAssembly(Assembly)" />.
/// Let the Intellisense drive you through the fluent API past those entry points. For details see the documentation at http://j.mp/WindsorApi
/// Let the Intellisense drive you through the fluent API past those entry points.
/// </summary>
/// <example>
/// <code>
Expand Down
4 changes: 2 additions & 2 deletions src/Castle.Windsor/Windsor/WindsorContainer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ public IWindsorContainer GetChildContainer(string name)
}

/// <summary>
/// Runs the <paramref name = "installers" /> so that they can register components in the container. For details see the documentation at http://j.mp/WindsorInstall
/// Runs the <paramref name = "installers" /> so that they can register components in the container.
/// </summary>
/// <remarks>
/// In addition to instantiating and passing every installer inline you can use helper methods on <see
Expand Down Expand Up @@ -464,7 +464,7 @@ public IWindsorContainer Install(params IWindsorInstaller[] installers)
/// Registers the components with the <see cref = "IWindsorContainer" />. The instances of <see cref = "IRegistration" /> are produced by fluent registration API.
/// Most common entry points are <see cref = "Component.For{TService}" /> method to register a single type or (recommended in most cases)
/// <see cref = "Classes.FromAssembly(Assembly)" />.
/// Let the Intellisense drive you through the fluent API past those entry points. For details see the documentation at http://j.mp/WindsorApi
/// Let the Intellisense drive you through the fluent API past those entry points.
/// </summary>
/// <example>
/// <code>
Expand Down

0 comments on commit 34dcf9b

Please sign in to comment.