Fix spelling (#2303)

This commit is contained in:
Firstyear 2023-11-11 13:04:35 +10:00 committed by GitHub
parent 47bcea7708
commit 8a40f5ab7b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -404,7 +404,7 @@ impl CredentialResetApp {
}, },
CURegWarning::Unsatisfiable => html! { CURegWarning::Unsatisfiable => html! {
<div class="alert alert-danger" role="alert"> <div class="alert alert-danger" role="alert">
<p>{ "An account policy conflict has occured and you will not be able to save your credentials" }</p> <p>{ "An account policy conflict has occurred and you will not be able to save your credentials" }</p>
<p>{ "Contact support IMMEDIATELY." }</p> <p>{ "Contact support IMMEDIATELY." }</p>
</div> </div>
}, },

View file

@ -904,11 +904,11 @@ fn display_status(status: CUStatus) {
match ext_cred_portal { match ext_cred_portal {
CUExtPortal::None => {} CUExtPortal::None => {}
CUExtPortal::Hidden => { CUExtPortal::Hidden => {
println!("Externally Managed: Not all features may be avaliable"); println!("Externally Managed: Not all features may be available");
println!(" Contact your admin for more details."); println!(" Contact your admin for more details.");
} }
CUExtPortal::Some(url) => { CUExtPortal::Some(url) => {
println!("Externally Managed: Not all features may be avaliable"); println!("Externally Managed: Not all features may be available");
println!(" Visit {} to update your account details.", url.as_str()); println!(" Visit {} to update your account details.", url.as_str());
} }
}; };