Skip to content

Commit 641e6f8

Browse files
authored
[NFC] Fix typos: XCode -> Xcode (#12294)
1 parent fc08f4d commit 641e6f8

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

FirebasePerformance/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ The above command should be sufficient for most scenarios. Few more options list
2323

2424
- `sh generate_project.sh` (or) `sh generate_project.sh -e "autopush"`
2525

26-
### Re-generate XCode project by deleting old XCode project
26+
### Re-generate Xcode project by deleting old Xcode project
2727

2828
- `sh generate_project.sh -c`

FirebasePerformance/generate_project.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ helpFunction()
2424
echo ""
2525
echo "Usage: $0 -e (prod/autopush*) -p (platform)"
2626
echo -e "\tEvent upload environment - prod (or) autopush. Default: autopush"
27-
echo -c "\tRecreate the Xcode project from scratch. Default: Reuse same XCode project"
27+
echo -c "\tRecreate the Xcode project from scratch. Default: Reuse same Xcode project"
2828
exit 1 # Exit script after printing help
2929
}
3030

@@ -67,7 +67,7 @@ if [ -z "$clean" ]
6767
then
6868
pod gen "$DIR/FirebasePerformance.podspec" --local-sources="$DIR/" --auto-open --gen-directory="$DIR/gen" --platforms="$platform"
6969
else
70-
echo "\nCreating a fresh Fireperf XCode project."
70+
echo "\nCreating a fresh Fireperf Xcode project."
7171
rm -f "$DIR/FirebasePerformance/ProtoSupport/*.[hm]"
7272
protoc --proto_path="$DIR/FirebasePerformance/ProtoSupport/" --objc_out="$DIR/FirebasePerformance/ProtoSupport/" "$DIR/FirebasePerformance/ProtoSupport/perf_metric.proto"
7373
pod gen "$DIR/FirebasePerformance.podspec" --local-sources="$DIR/" --auto-open --gen-directory="$DIR/gen" --platforms="$platform" --clean

Firestore/Example/FuzzTests/FuzzingResources/Serializer/Corpus/ConvertTextToBinary.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
# folder defined by SCRIPT_INPUT_FILE_0 and the generated binary protos are
1919
# stored in the folder defined by SCRIPT_OUTPUT_FILE_0. Both SCRIPT_INPUT_FILE_0
2020
# and SCRIPT_OUTPUT_FILE_0 are defined in the Run Script Build Phase of the
21-
# XCode build target Firestore_FuzzTests_iOS that executes this script. XCode
21+
# Xcode build target Firestore_FuzzTests_iOS that executes this script. Xcode
2222
# defines these environment variables and makes them available to the script.
2323
#
2424
# By default Xcode build phase scripts run in a stripped down environment that

Firestore/core/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ endif()
276276

277277
## gRPC Certificates
278278

279-
# Source files should be generated in place so that the XCode build can pick
279+
# Source files should be generated in place so that the Xcode build can pick
280280
# them up.
281281
set(OUTPUT_DIR ${CMAKE_CURRENT_SOURCE_DIR}/src/remote)
282282

Firestore/core/src/nanopb/pretty_printing.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ std::string ToString(float value) {
4646
// TODO(varconst): raise the precision.
4747
// The Objective-C protobuf library would use higher precision. E.g., it would
4848
// output 1.79769313486232e+308 in case where this implementation would only
49-
// output 1.79769e+308 (tested in XCode 11, iOS simulator).
49+
// output 1.79769e+308 (tested in Xcode 11, iOS simulator).
5050
std::ostringstream stream;
5151
stream << value;
5252
return stream.str();

Firestore/core/test/unit/FSTGoogleTestTests.mm

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -231,19 +231,19 @@ void XCTestMethod(XCTestCase* self, SEL _cmd) {
231231

232232
const testing::TestResult* result = testInfo->result();
233233
if (result->Passed()) {
234-
// Let XCode know that the test ran and succeeded.
234+
// Let Xcode know that the test ran and succeeded.
235235
XCTAssertTrue(true);
236236
return;
237237
} else if (result->Skipped()) {
238238
#if __IPHONE_OS_VERSION_MAX_ALLOWED >= 130400 || \
239239
__TV_OS_VERSION_MAX_ALLOWED >= 130400 || \
240240
__MAC_OS_X_VERSION_MAX_ALLOWED >= 101504
241-
// Let XCode know that the test was skipped.
241+
// Let Xcode know that the test was skipped.
242242
XCTSkip();
243243
#endif
244244
}
245245

246-
// Test failed :-(. Record the failure such that XCode will navigate directly
246+
// Test failed :-(. Record the failure such that Xcode will navigate directly
247247
// to the file:line.
248248
int parts = result->total_part_count();
249249
for (int i = 0; i < parts; i++) {

0 commit comments

Comments
 (0)