Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cli/src/rust_template.rs
Original file line number Diff line number Diff line change
Expand Up @@ -695,7 +695,7 @@ impl TestTemplate {
}
}
Self::Rust => {
// Do not initilize git repo
// Do not initialize git repo
let exit = std::process::Command::new("cargo")
.arg("new")
.arg("--vcs")
Expand Down
2 changes: 1 addition & 1 deletion lang/attribute/account/src/lazy.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ pub fn gen_lazy(strct: &syn::ItemStruct) -> syn::Result<TokenStream> {
let load_panic_docs = quote! {
/// # Panics
///
/// If there is an existing mutable reference crated by any of the `load_mut` methods.
/// If there is an existing mutable reference created by any of the `load_mut` methods.
};
let load_mut_panic_docs = quote! {
/// # Panics
Expand Down
2 changes: 1 addition & 1 deletion tests/lockup/programs/registry/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1011,7 +1011,7 @@ pub struct ExpireReward<'info> {

#[account]
pub struct Registrar {
/// Priviledged account.
/// Privileged account.
pub authority: Pubkey,
/// Nonce to derive the program-derived address owning the vaults.
pub nonce: u8,
Expand Down