From b69c25bc2ae0dfdf6a3451d443983105b147c05e Mon Sep 17 00:00:00 2001 From: Brian Donovan Date: Fri, 25 Mar 2011 08:50:06 -0700 Subject: [PATCH] Fix documentation typo. --- AppKit/CPScrollView.j | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AppKit/CPScrollView.j b/AppKit/CPScrollView.j index 0031b8832..a8a99def0 100644 --- a/AppKit/CPScrollView.j +++ b/AppKit/CPScrollView.j @@ -1077,7 +1077,7 @@ var CPScrollViewContentViewKey = @"CPScrollViewContentView", _cornerView = [aCoder decodeObjectForKey:CPScrollViewCornerViewKey]; _bottomCornerView = [aCoder decodeObjectForKey:CPScrollViewBottomCornerViewKey]; - // Do to the anything goes nature of decoding, our subviews may not exist yet, so layout at the end of the run loop when we're sure everything is in a correct state. + // Due to the anything goes nature of decoding, our subviews may not exist yet, so layout at the end of the run loop when we're sure everything is in a correct state. [[CPRunLoop currentRunLoop] performSelector:@selector(_updateCornerAndHeaderView) target:self argument:_contentView order:0 modes:[CPDefaultRunLoopMode]]; }