Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolayPianikov authored and NikolayPianikov committed Feb 5, 2020
1 parent 156f98c commit 60ae8dd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions IoC.Source/IoC.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7787,22 +7787,22 @@ namespace IoC
public enum Lifetime
{
/// <summary>
/// It is default lifetime. A new instance wll be created each time.
/// A new instance is creating each time (it's default).
/// </summary>
Transient = 1,

/// <summary>
/// Singleton
/// Single instance.
/// </summary>
Singleton = 2,

/// <summary>
/// Singleton per container
/// Singleton instance per container.
/// </summary>
ContainerSingleton = 3,

/// <summary>
/// Singleton per scope
/// Singleton instance per scope.
/// </summary>
ScopeSingleton = 4
}
Expand Down

0 comments on commit 60ae8dd

Please sign in to comment.