| ... | ... | @@ -211,8 +211,9 @@ pub const Target = struct { |
| 211 | 211 | /// If neither of these cases apply, a runtime check should be used to determine if the |
| 212 | 212 | /// target supports a given OS feature. |
| 213 | 213 | /// |
| 214 | | /// Binaries built with a given maximum version will continue to function on newer operating system |
| 215 | | /// versions. However, such a binary may not take full advantage of the newer operating system APIs. |
| 214 | /// Binaries built with a given maximum version will continue to function on newer |
| 215 | /// operating system versions. However, such a binary may not take full advantage of the |
| 216 | /// newer operating system APIs. |
| 216 | 217 | /// |
| 217 | 218 | /// See `Os.isAtLeast`. |
| 218 | 219 | pub const VersionRange = union { |
| ... | ... | @@ -260,7 +261,7 @@ pub const Target = struct { |
| 260 | 261 | .freebsd => return .{ |
| 261 | 262 | .semver = Version.Range{ |
| 262 | 263 | .min = .{ .major = 12, .minor = 0 }, |
| 263 | | .max = .{ .major = 12, .minor = 1 }, |
| 264 | .max = .{ .major = 13, .minor = 0 }, |
| 264 | 265 | }, |
| 265 | 266 | }, |
| 266 | 267 | .macos => return .{ |