Skip to content

Commit 3b9a099

Browse files
authored
Merge pull request #11 from SiGe11/patch-1
Fix redundancy in comment
2 parents c38bec2 + 2c58981 commit 3b9a099

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: FastDMG/FastDMGAppDelegate.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ - (void)mountDiskImage:(NSString *)diskImagePath {
202202
int polling_ms = 50000; // 0.05 sec
203203
int max = 1000000/polling_ms;
204204
int cnt = 0;
205-
// Give it max 1 sec second to mount
205+
// Give it max 1 sec to mount
206206
while (cnt < max && [[NSFileManager defaultManager] fileExistsAtPath:mountPoint] == NO) {
207207
usleep(polling_ms);
208208
cnt++;

0 commit comments

Comments
 (0)