From 3b16ce95e9e010370536d2d6af8d888ab1a6267e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wojciech=20Zi=C4=99ba?= Date: Thu, 1 Feb 2024 15:02:29 +0100 Subject: [PATCH] Update MIGRATION.md Co-authored-by: Ian Guedes Maia --- MIGRATION.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MIGRATION.md b/MIGRATION.md index d5a0b31..f61d520 100644 --- a/MIGRATION.md +++ b/MIGRATION.md @@ -6,9 +6,9 @@ This document acts as a guide for migration, detailing every breaking change tha When migrating to version 4.x of the Parse.ly Android SDK, you will encounter several changes that may require updates to your codebase. The following list details these breaking changes and recommended actions: -### Removed initialization `ParselyTracker#sharedInstace` methods +### Removed initialization `ParselyTracker#sharedInstance` methods -Previously, the SDK was initialized `ParselyTracker#sharedInstace` method, which should be replaced with `ParselyTracker#init` method: +Previously, the SDK was initialized `ParselyTracker#sharedInstance` method, which should be replaced with `ParselyTracker#init` method: ```kotlin ParselyTracker.sharedInstance("example.com", 30, this, true) // before