Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,13 @@ is a simple implementation of `AnalyticsEngine` that logs output using Apple's'
Installation
----------

You can add Y—Analytics to an Xcode project by adding it as a package dependency.
You can add CT—Analytics to an Xcode project by adding it as a package dependency.

1. From the **File** menu, select **Add Packages...**
2. Enter "[https://github.com/codeandtheory/ct-analytics-ios](https://github.com/codeandtheory/ct-analytics-ios)" into the package repository URL text field
3. Click **Add Package**

Contributing to Y—Analytics
Contributing to CT—Analytics
----------

### Requirements
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ final class CountAnalyticsEngine {
}

extension CountAnalyticsEngine: AnalyticsEngine {
func track(event: YAnalytics.AnalyticsEvent) {
func track(event: CTAnalytics.AnalyticsEvent) {
count += 1
}
}
Loading