Skip to content

Commit be4d639

Browse files
committed
Fix typo univeral2 -> universal2
1 parent 04fb8cc commit be4d639

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Changelog.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111

1212
* `maturin develop` now looks for a virtualenv `.venv` in the current or any parent directory if no virtual environment is active.
1313
* Add a new `generate-ci` command to generate CI configuration in [#1456](https://github.com/PyO3/maturin/pull/1456)
14-
* Deprecate `--univeral2` in favor of `universal2-apple-darwin` target in [#1457](https://github.com/PyO3/maturin/pull/1457)
14+
* Deprecate `--universal2` in favor of `universal2-apple-darwin` target in [#1457](https://github.com/PyO3/maturin/pull/1457)
1515
* Raise an error when `Cargo.toml` contains removed python package metadata in [#1471](https://github.com/PyO3/maturin/pull/1471)
1616
* Use `extension_name` instead of `module_name` for CFFI extensions in develop mode in [#1476](https://github.com/PyO3/maturin/pull/1476)
1717

src/build_options.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,7 @@ impl BuildOptions {
517517

518518
let mut universal2 = self.universal2;
519519
if universal2 {
520-
eprintln!("⚠️ Warning: `--universal2` is deprecated, use `--target univeral2-apple-darwin` instead");
520+
eprintln!("⚠️ Warning: `--universal2` is deprecated, use `--target universal2-apple-darwin` instead");
521521
} else if target_triple.as_deref() == Some("universal2-apple-darwin") {
522522
universal2 = true;
523523
target_triple = None;

0 commit comments

Comments
 (0)