Skip to content

Commit

Permalink
Just a few spelling fixes. (umbraco#3405)
Browse files Browse the repository at this point in the history
  • Loading branch information
skoomasteve authored and nul800sebastiaan committed Oct 23, 2018
1 parent ee3cbf0 commit 5f76596
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.bat
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ IF ERRORLEVEL 1 (

:error
ECHO.
ECHO Can not run build\build.ps1.
ECHO Cannot run build\build.ps1.
ECHO If this is due to a SecurityError then please refer to BUILD.md for help!
ECHO.
6 changes: 3 additions & 3 deletions src/umbraco.providers/members/UmbracoMembershipProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ namespace umbraco.providers.members
/// <summary>
/// Custom Membership Provider for Umbraco Members (User authentication for Frontend applications NOT umbraco CMS)
/// </summary>
[Obsolete("This has been superceded by Umbraco.Web.Security.Providers.MembersMembershipProvider")]
[Obsolete("This has been superseded by Umbraco.Web.Security.Providers.MembersMembershipProvider")]
public class UmbracoMembershipProvider : UmbracoMembershipProviderBase, IUmbracoMemberTypeMembershipProvider
{
public UmbracoMembershipProvider()
Expand Down Expand Up @@ -111,7 +111,7 @@ public override bool AllowManuallyChangingPassword
/// <exception cref="T:System.ArgumentException">The name of the provider has a length of zero.</exception>
public override void Initialize(string name, NameValueCollection config)
{
// Intialize values from web.config
// Initialize values from web.config
if (config == null) throw new ArgumentNullException("config");

if (string.IsNullOrEmpty(name)) name = Constants.Conventions.Member.UmbracoMemberProviderName;
Expand Down Expand Up @@ -189,7 +189,7 @@ public override void Initialize(string name, NameValueCollection config)
/// </returns>
protected override bool PerformChangePassword(string username, string oldPassword, string newPassword)
{
//NOTE: due to backwards compatibilty reasons, this provider doesn't care about the old password and
//NOTE: due to backwards compatibility reasons, this provider doesn't care about the old password and
// allows simply setting the password manually so we don't really care about the old password.
// This is allowed based on the overridden AllowManuallyChangingPassword option.

Expand Down

0 comments on commit 5f76596

Please sign in to comment.