From 8e033e7f88e356d8d9de41b36bd76c15ce5237c3 Mon Sep 17 00:00:00 2001 From: Igor Shevchenko <39371503+bnzone@users.noreply.github.com> Date: Tue, 8 Aug 2023 03:13:13 -0500 Subject: [PATCH] Fix typos in `examples/diesel-postgres/src/main.rs` (#2159) --- examples/diesel-postgres/src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/diesel-postgres/src/main.rs b/examples/diesel-postgres/src/main.rs index 9bf9059d..de786474 100644 --- a/examples/diesel-postgres/src/main.rs +++ b/examples/diesel-postgres/src/main.rs @@ -22,8 +22,8 @@ use diesel_migrations::{embed_migrations, EmbeddedMigrations, MigrationHarness}; use std::net::SocketAddr; use tracing_subscriber::{layer::SubscriberExt, util::SubscriberInitExt}; -// this embeddes the migrations into the application binary -// the migration path is releative to the `CARGO_MANIFEST_DIR` +// this embeds the migrations into the application binary +// the migration path is relative to the `CARGO_MANIFEST_DIR` pub const MIGRATIONS: EmbeddedMigrations = embed_migrations!("migrations/"); // normally part of your generated schema.rs file