Skip to content

Commit

Permalink
Fix comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom Laird-McConnell committed Feb 7, 2020
1 parent e7d2638 commit a6dd05f
Showing 1 changed file with 8 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,13 @@
namespace Microsoft.Bot.Builder.Dialogs.Declarative
{
/// <summary>
/// ComponentRegistration is a placeholder class for discovering assets from components. To make your components
/// available to the system you derive from ComponentRegistration and implement the interfaces which define
/// the components. These components then are consumed in appropriate places by the systems that need them.
/// For example, to add declarative types to the system you simply add class that implements IComponentDeclarativeTypes
/// ComponentRegistration is a placeholder class for discovering assets from components.
/// </summary>
/// <remarks>
/// To make your components available to the system you derive from ComponentRegistration and implement the
/// interfaces which definethe components. These components then are consumed in appropriate places by the
/// systems that need them. For example, to add declarative types to the system you simply add class that
/// implements IComponentDeclarativeTypes.
/// <code>
/// public class MyComponentRegistration : IComponentDeclarativeTypes
/// {
Expand All @@ -25,7 +28,7 @@ namespace Microsoft.Bot.Builder.Dialogs.Declarative
/// }
/// }
/// </code>
/// </summary>
/// </remarks>
public class ComponentRegistration
{
/// <summary>
Expand Down

0 comments on commit a6dd05f

Please sign in to comment.