Skip to content

Commit

Permalink
Style: Add the ending period to the XML document texts (PowerShell#8577)
Browse files Browse the repository at this point in the history
  • Loading branch information
iSazonov authored and daxian-dbw committed Jan 5, 2019
1 parent 7ff5d4c commit 1be3f4c
Show file tree
Hide file tree
Showing 658 changed files with 8,183 additions and 8,183 deletions.
2 changes: 1 addition & 1 deletion docs/host-powershell/sample-dotnet1.1/Logic/UseRunspace.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace Application.Test
public sealed class Logic
{
/// <summary>
/// Start the actual logic
/// Start the actual logic.
/// </summary>
public static int Start(string[] args)
{
Expand Down
2 changes: 1 addition & 1 deletion docs/host-powershell/sample-dotnet1.1/MyApp/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace Application.Test
public class Program
{
/// <summary>
/// Managed entry point shim, which starts the actual program
/// Managed entry point shim, which starts the actual program.
/// </summary>
public static int Main(string[] args)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace Application.Test
public class Program
{
/// <summary>
/// Managed entry point shim, which starts the actual program
/// Managed entry point shim, which starts the actual program.
/// </summary>
public static int Main(string[] args)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace Application.Test
public sealed class Logic
{
/// <summary>
/// Start the actual logic
/// Start the actual logic.
/// </summary>
public static int Start(string[] args)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace Application.Test
public class Program
{
/// <summary>
/// Managed entry point shim, which starts the actual program
/// Managed entry point shim, which starts the actual program.
/// </summary>
public static int Main(string[] args)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace Application.Test
public class Program
{
/// <summary>
/// Managed entry point shim, which starts the actual program
/// Managed entry point shim, which starts the actual program.
/// </summary>
public static int Main(string[] args)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ internal abstract class CimAsyncOperation : IDisposable
#region Constructor

/// <summary>
/// Constructor
/// Constructor.
/// </summary>
public CimAsyncOperation()
{
Expand Down Expand Up @@ -319,7 +319,7 @@ protected CimSessionProxy CreateCimSessionProxy(string computerName, CimInstance
}

/// <summary>
/// Subscribe event from proxy and add proxy to cache
/// Subscribe event from proxy and add proxy to cache.
/// </summary>
/// <param name="proxy"></param>
protected void SubscribeEventAndAddProxytoCache(CimSessionProxy proxy)
Expand All @@ -344,7 +344,7 @@ protected virtual void SubscribeToCimSessionProxyEvent(CimSessionProxy proxy)
}

/// <summary>
/// Retrieve the base object out if wrapped in psobject
/// Retrieve the base object out if wrapped in psobject.
/// </summary>
/// <param name="value"></param>
/// <returns></returns>
Expand Down Expand Up @@ -547,17 +547,17 @@ private void Cleanup()
#region private members

/// <summary>
/// lock object
/// lock object.
/// </summary>
private readonly object myLock = new object();

/// <summary>
/// number of active operations
/// number of active operations.
/// </summary>
private UInt32 operationCount = 0;

/// <summary>
/// Event to notify ps thread that more action is available
/// Event to notify ps thread that more action is available.
/// </summary>
private ManualResetEventSlim moreActionEvent;

Expand All @@ -569,7 +569,7 @@ private void Cleanup()
private ConcurrentQueue<CimBaseAction> actionQueue;

/// <summary>
/// lock object
/// lock object.
/// </summary>
private readonly object cimSessionProxyCacheLock = new object();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ protected XOperationContextBase Context
internal class CimSyncAction : CimBaseAction, IDisposable
{
/// <summary>
/// Constructor
/// Constructor.
/// </summary>
public CimSyncAction()
{
Expand Down Expand Up @@ -124,20 +124,20 @@ protected virtual void Block()
#region members

/// <summary>
/// action completed event
/// action completed event.
/// </summary>
private ManualResetEventSlim completeEvent;

/// <summary>
/// response result
/// response result.
/// </summary>
protected CimResponseType responseType;

#endregion

#region IDisposable interface
/// <summary>
/// IDisposable interface
/// IDisposable interface.
/// </summary>
private bool _disposed;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,21 +75,21 @@ internal CimCmdletAliasEntry(string name, string value)
}

/// <summary>
/// The string defining the name of this alias
/// The string defining the name of this alias.
/// </summary>
internal string Name { get { return this._name; } }

private string _name;

/// <summary>
/// The string defining real cmdlet name
/// The string defining real cmdlet name.
/// </summary>
internal string Value { get { return this._value; } }

private string _value = string.Empty;

/// <summary>
/// The string defining real cmdlet name
/// The string defining real cmdlet name.
/// </summary>
internal ScopedItemOptions Options { get { return this._options; } }

Expand Down
Loading

0 comments on commit 1be3f4c

Please sign in to comment.