Skip to content

Commit bee0058

Browse files
author
Michael Shannon Potter
committed
Merge pull request #3 from olivercameron/fix-readme-code
Duplicate setters for 'smallUserThumbnailImageFormat' sample code in the README
2 parents e7d70b6 + 31905a3 commit bee0058

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -172,12 +172,12 @@ smallUserThumbnailImageFormat.maximumCount = 250;
172172
smallUserThumbnailImageFormat.devices = FICImageFormatDevicePhone;
173173

174174
FICImageFormat *mediumUserThumbnailImageFormat = [[[FICImageFormat alloc] init] autorelease];
175-
smallUserThumbnailImageFormat.name = XXImageFormatNameUserThumbnailMedium;
176-
smallUserThumbnailImageFormat.family = XXImageFormatFamilyUserThumbnails;
177-
smallUserThumbnailImageFormat.imageSize = CGSizeMake(100, 100);
178-
smallUserThumbnailImageFormat.opaque = YES;
179-
smallUserThumbnailImageFormat.maximumCount = 250;
180-
smallUserThumbnailImageFormat.devices = FICImageFormatDevicePhone;
175+
mediumUserThumbnailImageFormat.name = XXImageFormatNameUserThumbnailMedium;
176+
mediumUserThumbnailImageFormat.family = XXImageFormatFamilyUserThumbnails;
177+
mediumUserThumbnailImageFormat.imageSize = CGSizeMake(100, 100);
178+
mediumUserThumbnailImageFormat.opaque = YES;
179+
mediumUserThumbnailImageFormat.maximumCount = 250;
180+
mediumUserThumbnailImageFormat.devices = FICImageFormatDevicePhone;
181181

182182
NSArray *imageFormats = @[smallUserThumbnailImageFormat, mediumUserThumbnailImageFormat];
183183
```

0 commit comments

Comments
 (0)