Skip to content
Open
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 loco-new/base_template/src/controllers/auth.rs
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ async fn verify(State(ctx): State<AppContext>, Path(token): Path<String>) -> Res

/// In case the user forgot his password this endpoints generate a forgot token
/// and send email to the user. In case the email not found in our DB, we are
/// returning a valid request for for security reasons (not exposing users DB
/// returning a valid request for security reasons (not exposing users DB
/// list).
#[debug_handler]
async fn forgot(
Expand Down
2 changes: 1 addition & 1 deletion loco-new/src/generator/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ static APP_TEMPLATE: Dir<'_> = include_dir!("base_template");
/// application.
///
/// # Errors
/// when could not extract the the base template
/// when could not extract the base template
pub fn extract_default_template() -> std::io::Result<tree_fs::Tree> {
let generator_tmp_folder = tree_fs::TreeBuilder::default().create()?;

Expand Down