Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions PubNub/Core/PubNub+Core.h
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ NS_ASSUME_NONNULL_BEGIN
/// ```objc
/// __weak __typeof(self) weakSelf = self;
/// PNConfiguration *configuration = [self.pubnub currentConfiguration];
/// configuration.presenceHeartbeatValue = 60;
/// configuration.presenceHeartbeatValue = 40;
/// [self.client copyWithConfiguration:configuration completion:^(PubNub *pubnub) {
/// // Store reference on new client with updated configuration.
/// weakSelf.pubnub = pubnub;
Expand Down Expand Up @@ -148,7 +148,7 @@ NS_ASSUME_NONNULL_BEGIN
/// __weak __typeof(self) weakSelf = self;
/// dispatch_queue_t queue = dispatch_queue_create("com.my-app.callback-queue", DISPATCH_QUEUE_SERIAL);
/// PNConfiguration *configuration = [self.pubnub currentConfiguration];
/// configuration.presenceHeartbeatValue = 60;
/// configuration.presenceHeartbeatValue = 40;
/// [self.pubnub copyWithConfiguration:configuration callbackQueue:queue completion:^(PubNub *pubnub) {
/// // Store reference on new client with updated configuration.
/// weakSelf.pubnub = pubnub;
Expand Down
Loading