Skip to content

Commit

Permalink
fix documentation grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
stonko1994 committed Aug 24, 2024
1 parent b93895e commit cb62c15
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions BitmovinConvivaAnalytics/Classes/ConvivaAnalytics.swift
Original file line number Diff line number Diff line change
Expand Up @@ -294,8 +294,8 @@ public final class ConvivaAnalytics: NSObject {
/// Attaches a `Player` instance to the Conviva Analytics object.
/// This method should be called as soon as the `Player` instance is initialized to not miss any tracking.
///
/// Has no effect if there is already an `Player` instance set. Use the `ConvivaAnalytics.init` without `player`
/// if you plan to attach an `Player` instance later in the life-cycle.
/// Has no effect if there is already a `Player` instance set. Use the `ConvivaAnalytics.init` without `player`
/// if you plan to attach a `Player` instance later in the life-cycle.
public func attach(player: Player) {
if self.player != nil {
logger.debugLog(
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

### Added
- Warning logs in case the `viewerId` or `applicationName` is missing
- Possibility to start session tracking without an `Player` instance
- Possibility to start session tracking without a `Player` instance
- `ConvivaAnalytics.init(customerKey:config:)` initializer without a `Player`
- `ConvivaAnalytics.attach(player:)` to attach the `Player` at a later point in the session life-cycle

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ player.load(…);
### External VST tracking

If your app needs additional setup steps which should be included in VST tracking, such as DRM token generation, before the `Player` instance can be initialized,
the `ConvivaAnalytics` can be initialized without an `Player` instance. Once the `Player` instance is created it can be attached.
the `ConvivaAnalytics` can be initialized without a `Player` instance. Once the `Player` instance is created it can be attached.

1. Create the `ConvivaAnalytics` instance with your `customerKey` and configuration.

Expand Down

0 comments on commit cb62c15

Please sign in to comment.