Skip to content

Commit 619224f

Browse files
committed
Fix comment.
1 parent a2f6681 commit 619224f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

analytics/generate_windows_stubs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ def generate_function_pointers(dll_file_path, header_file_path, output_h_path, o
161161
f.write(f'\n// Number of Google Analytics functions expected to be loaded from the DLL.')
162162
f.write(f'\n#define FIREBASE_ANALYTICS_DYNAMIC_FUNCTION_COUNT {len(function_details_for_loader)}\n\n')
163163
f.write('// Load Analytics functions from the given DLL handle into function pointers.\n')
164-
f.write(f'// Returns the number of functions successfully loaded (out of\nFIREBASE_ANALYTICS_DYNAMIC_FUNCTION_COUNT).\n')
164+
f.write(f'// Returns the number of functions successfully loaded (out of\n// FIREBASE_ANALYTICS_DYNAMIC_FUNCTION_COUNT).\n')
165165
f.write("int FirebaseAnalytics_LoadDynamicFunctions(HMODULE dll_handle);\n\n")
166166
f.write('// Reset all function pointers back to stubs.\n')
167167
f.write("void FirebaseAnalytics_UnloadDynamicFunctions(void);\n\n")

analytics/src/analytics_desktop_dynamic.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ extern const unsigned char FirebaseAnalytics_WindowsDllHash[32];
124124

125125
// Load Analytics functions from the given DLL handle into function pointers.
126126
// Returns the number of functions successfully loaded (out of
127-
FIREBASE_ANALYTICS_DYNAMIC_FUNCTION_COUNT).
127+
// FIREBASE_ANALYTICS_DYNAMIC_FUNCTION_COUNT).
128128
int FirebaseAnalytics_LoadDynamicFunctions(HMODULE dll_handle);
129129

130130
// Reset all function pointers back to stubs.

0 commit comments

Comments
 (0)