Skip to content

Commit 16dcd7d

Browse files
committed
review
1 parent c896511 commit 16dcd7d

File tree

7 files changed

+460
-12
lines changed

7 files changed

+460
-12
lines changed

compiler/rustc_codegen_ssa/src/back/metadata.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -408,7 +408,7 @@ pub(crate) fn create_object_file(sess: &Session) -> Option<write::Object<'static
408408
/// Mach-O files contain information about:
409409
/// - The platform/OS they were built for (macOS/watchOS/Mac Catalyst/iOS simulator etc).
410410
/// - The minimum OS version / deployment target.
411-
/// - The version of the SDK they were targeting.
411+
/// - The version of the SDK they were targetting.
412412
///
413413
/// In the past, this was accomplished using the LC_VERSION_MIN_MACOSX, LC_VERSION_MIN_IPHONEOS,
414414
/// LC_VERSION_MIN_TVOS or LC_VERSION_MIN_WATCHOS load commands, which each contain information

compiler/rustc_errors/src/tests.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ fn wellformed_fluent() {
9797
}
9898

9999
#[test]
100-
fn malformed_fluent() {
100+
fn misformed_fluent() {
101101
let dummy = make_dummy("mir_build_borrow_of_moved_value = borrow of moved value
102102
.label = value moved into `{name}` here
103103
.occurs_because_label = move occurs because `{$oops}` has type `{$ty}` which does not implement the `Copy` trait

compiler/rustc_lint_defs/src/builtin.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4443,7 +4443,7 @@ declare_lint! {
44434443

44444444
declare_lint! {
44454445
/// The `refining_impl_trait_reachable` lint detects `impl Trait` return
4446-
/// types in method signatures that are refined by a publicly reachable
4446+
/// types in method signatures that are refined by a publically reachable
44474447
/// trait implementation, meaning the implementation adds information about
44484448
/// the return type that is not present in the trait.
44494449
///

0 commit comments

Comments
 (0)