Skip to content

Commit

Permalink
fix broken build caused by lack of a period in a comment. Yes. Really.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom Laird-McConnell committed Feb 7, 2020
1 parent a6dd05f commit 36f28ab
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public interface IComponentPathResolvers
/// <summary>
/// Return enumeration of pathresolvers.
/// </summary>
/// <returns>collection of <see ref="IPathResolver>IPathResolver</see>.</returns>
/// <returns>collection of IPathResolvers.</returns>
IEnumerable<IPathResolver> GetPathResolvers();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public IEnumerable<DeclarativeType> GetDeclarativeTypes()
/// Return JsonConverters for LanguageGeneration resources.
/// </summary>
/// <param name="resourceExplorer">resource explorer to use for resolving references.</param>
/// <param name="paths">contextual path stack to use to build debugger.sourcemap</param>
/// <param name="paths">contextual path stack to use to build debugger.sourcemap.</param>
/// <returns>enumeration of jsonconverters.</returns>
public IEnumerable<JsonConverter> GetConverters(ResourceExplorer resourceExplorer, Stack<string> paths)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ public SimpleMultiLangGenerator(Dictionary<string, string> localeLGFiles)

public async Task<string> Generate(ITurnContext turnContext, string template, object data)
{
await Task.CompletedTask;

if (template == null)
{
throw new ArgumentNullException(nameof(template));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,6 @@ protected ActionScope ActionScope
/// <summary>
/// Get the expression for this rule by calling GatherConstraints().
/// </summary>
/// <param name="parser">Expression parser.</param>
/// <returns>Expression which will be cached and used to evaluate this rule.</returns>
public virtual Expression GetExpression()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ public ResourceExplorer RegisterType<T>(string kind, ICustomDeserializer loader
/// Register a declarative type with the resource loader system.
/// </summary>
/// <param name="kind">the $kind name to map to this type.</param>
/// <param name="type">type of object to create.</typeparam>
/// <param name="type">type of object to create.</param>
/// <param name="loader">optional custom deserializer.</param>
/// <returns>Resource explorer for fluent style multiple calls.</returns>
public ResourceExplorer RegisterType(string kind, Type type, ICustomDeserializer loader = null)
Expand Down

0 comments on commit 36f28ab

Please sign in to comment.