not-fl3 / miniquad

Cross platform rendering in Rust
Apache License 2.0
1.54k stars 173 forks source link

Fix `target_ios` typo #480

Closed cyrgani closed 3 weeks ago

cyrgani commented 3 weeks ago

Fixes a simple typo: #[cfg(target_ios = "ios")] becomes #[cfg(target_os = "ios")].

not-fl3 commented 3 weeks ago

Thanks!