@@ -250,7 +250,7 @@ def make_build_python(context):
250250
251251
252252def apple_target (host ):
253- """Return the apple platform identifier for a given host triple."""
253+ """Return the Apple platform identifier for a given host triple."""
254254 for _ , platform_slices in HOSTS .items ():
255255 for slice_name , slice_parts in platform_slices .items ():
256256 for host_triple , multiarch in slice_parts .items ():
@@ -409,7 +409,7 @@ def create_xcframework(context):
409409 # there's more than architecture, we need to merge the individual built
410410 # frameworks into a merged "fat" framework.
411411 for slice_name , slice_parts in HOSTS [context .platform ].items ():
412- # Some parts are the same across all slices, so we can any of the
412+ # Some parts are the same across all slices, so we use can any of the
413413 # host frameworks as the source for the merged version. Use the first
414414 # one on the list, as it's as representative as any other.
415415 first_host_triple , first_multiarch = next (iter (slice_parts .items ()))
@@ -788,14 +788,14 @@ def parse_args():
788788 cmd .add_argument (
789789 "platform" ,
790790 choices = HOSTS .keys (),
791- help = "The target platform to build. " ,
791+ help = "The target platform to build" ,
792792 )
793793
794794 # host triple argument
795795 for cmd in [configure_host , make_host ]:
796796 cmd .add_argument (
797797 "host" ,
798- help = "The host triple to build (e.g., arm64-apple-ios-simulator). " ,
798+ help = "The host triple to build (e.g., arm64-apple-ios-simulator)" ,
799799 )
800800 # optional host triple argument
801801 for cmd in [clean , build , test ]:
0 commit comments