Skip to content

Commit

Permalink
Added XML comments
Browse files Browse the repository at this point in the history
  • Loading branch information
thecodejunkie committed Jan 17, 2016
1 parent dea1ae4 commit 8ee75ec
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions src/Nancy/RouteConfiguration.cs
Expand Up @@ -13,10 +13,10 @@ public class RouteConfiguration
explicitHeadRouting: false);

/// <summary>
///
/// Initializes a new instance of the <see cref="RouteConfiguration"/> class.
/// </summary>
/// <param name="disableMethodNotAllowedResponses"></param>
/// <param name="explicitHeadRouting"></param>
/// <param name="disableMethodNotAllowedResponses">Determins is 405 responses are allowed.</param>
/// <param name="explicitHeadRouting">Enabled support for explicit HEAD route declarations.</param>
public RouteConfiguration(bool disableMethodNotAllowedResponses = false, bool explicitHeadRouting = false)
{
this.DisableMethodNotAllowedResponses = disableMethodNotAllowedResponses;
Expand Down
4 changes: 2 additions & 2 deletions src/Nancy/ViewConfiguration.cs
Expand Up @@ -19,8 +19,8 @@ private ViewConfiguration()
/// <summary>
/// Initializes a new instance of the <see cref="ViewConfiguration"/> class.
/// </summary>
/// <param name="runtimeViewDiscovery"></param>
/// <param name="runtimeViewUpdates"></param>
/// <param name="runtimeViewDiscovery">Determines if views can be discovered during runtime.</param>
/// <param name="runtimeViewUpdates">Determines if views can be updated during runtime.</param>
public ViewConfiguration(bool runtimeViewDiscovery = false, bool runtimeViewUpdates = false)
{
this.RuntimeViewDiscovery = runtimeViewDiscovery;
Expand Down

0 comments on commit 8ee75ec

Please sign in to comment.