Skip to content

Commit 3f4499c

Browse files
committed
Merge remote-tracking branch 'origin/master' into master-rebranch
2 parents e8f3fa8 + fb9a864 commit 3f4499c

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

lib/Sema/CSSimplify.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6292,7 +6292,7 @@ ConstraintSystem::simplifyApplicableFnConstraint(
62926292

62936293
// Don't attempt this optimization in "diagnostic mode" because
62946294
// in such mode we'd like to attempt all of the available
6295-
// overloads regardless of of problems related to missing or
6295+
// overloads regardless of problems related to missing or
62966296
// extraneous labels and/or arguments.
62976297
if (!(solverState && shouldAttemptFixes())) {
62986298
// If the right-hand side is a type variable,

stdlib/public/core/Array.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1421,7 +1421,7 @@ extension Array {
14211421
/// of the new array.
14221422
/// - Parameters:
14231423
/// - buffer: A buffer covering uninitialized memory with room for the
1424-
/// specified number of of elements.
1424+
/// specified number of elements.
14251425
/// - initializedCount: The count of initialized elements in the array,
14261426
/// which begins as zero. Set `initializedCount` to the number of
14271427
/// elements you initialize.

stdlib/public/core/ContiguousArray.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1006,7 +1006,7 @@ extension ContiguousArray {
10061006
/// of the new array.
10071007
/// - Parameters:
10081008
/// - buffer: A buffer covering uninitialized memory with room for the
1009-
/// specified number of of elements.
1009+
/// specified number of elements.
10101010
/// - initializedCount: The count of initialized elements in the array,
10111011
/// which begins as zero. Set `initializedCount` to the number of
10121012
/// elements you initialize.

utils/api_checker/swift-api-checker.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,11 @@ def prepare_module_list(platform, file, verbose, module_filter_flags,
6868
include_fixed_clang_modules):
6969
cmd = [INFER_IMPORT_PATH, '-s', get_sdk_path(platform)]
7070
cmd.extend(module_filter_flags)
71+
if platform.startswith('iosmac'):
72+
cmd.extend(['--catalyst'])
7173
if verbose:
7274
cmd.extend(['--v'])
73-
check_call(cmd, output=file)
75+
check_call(cmd, verbose=verbose, output=file)
7476
# Always include fixed swift modules
7577
write_fixed_module(file, platform, 'swift', verbose)
7678
# Check if we need fixed clang modules

0 commit comments

Comments
 (0)