@@ -131,7 +131,7 @@ for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/
131131 use associated constants where appropriate.
132132
133133* You will now need to invoke ` allow_tables_to_appear_in_same_query! ` any time two tables
134- appear together in the same query, even if there is a ` joinable! ` invocationfor those tables.
134+ appear together in the same query, even if there is a ` joinable! ` invocation for those tables.
135135
136136* ` diesel_codegen ` should no longer explicitly be used as a dependency. Unless
137137 you are using ` infer_schema! ` or ` embed_migrations! ` , you can simply remove it
@@ -742,7 +742,7 @@ for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/
742742 instead of ` env!("foo") ` and ` "dotenv:foo" ` instead of ` dotenv!("foo") ` . The
743743 use of ` dotenv ` requires the ` dotenv ` feature on ` diesel_codegen ` , which is
744744 included by default. Using ` env! ` and ` dotenv! ` will no longer work with
745- ` diesel_codegen ` . They continue to work with ` diesel_codgen_syntex ` , but that
745+ ` diesel_codegen ` . They continue to work with ` diesel_codegen_syntex ` , but that
746746 crate will be deprecated when Macros 1.1 is in the beta channel for Rust.
747747
748748[ bash completion ] : https://github.com/diesel-rs/diesel/blob/b1a0d9901f0f2a8c8d530ccba8173b57f332b891/diesel_cli/README.md#bash-completion
@@ -1148,7 +1148,7 @@ for Rust libraries in [RFC #1105](https://github.com/rust-lang/rfcs/blob/master/
11481148* ` query_one ` , ` find ` , and ` first ` now assume a single row is returned. For
11491149 cases where you actually expect 0 or 1 rows to be returned, the ` optional `
11501150 method has been added to the result, in case having a ` Result<Option<T>> ` is
1151- more ideomatic than checking for ` Err(NotFound) ` .
1151+ more idiomatic than checking for ` Err(NotFound) ` .
11521152
11531153### Deprecated
11541154
0 commit comments