diff --git a/docs/migrating-from-2.0.md b/docs/migrating-from-2.0.md index c61b30620..d31682f8f 100644 --- a/docs/migrating-from-2.0.md +++ b/docs/migrating-from-2.0.md @@ -11,13 +11,13 @@ Generally name of classes from Chucker 2.x used to have `Chuck` as a prefix (e.g So if to launch the UI of Chucker, you would normally call: ```kotlin -Chuck.getLaunchIntent(context) +Chuck.getLaunchIntent(...) ``` now you will call ```kotlin -Chucker.getLaunchIntent(context) +Chucker.getLaunchIntent(...) ``` ## 2. Package name changes @@ -92,4 +92,4 @@ The `Period` enum has also been moved from `ChuckCollector` to `RetentionManager ## 5. registerDefaultCrashHanlder typo -The function `Chuck.registerDefaultCrashHanlder` contained a typo in the name and now is moved to `Chucker.registerDefaultCrashHandler`. \ No newline at end of file +The function `Chuck.registerDefaultCrashHanlder` contained a typo in the name and now is moved to `Chucker.registerDefaultCrashHandler`. diff --git a/docs/migrating-from-chuck.md b/docs/migrating-from-chuck.md index 1499a5264..18cbec26f 100644 --- a/docs/migrating-from-chuck.md +++ b/docs/migrating-from-chuck.md @@ -116,11 +116,11 @@ Generally name of classes from Chuck (e.g. `ChuckInterceptor`) got udpated to Ch So if to launch the UI of Chuck, you would normally call: ```kotlin -Chuck.getLaunchIntent(context) +Chuck.getLaunchIntent(...) ``` now you will call ```kotlin -Chucker.getLaunchIntent(context) +Chucker.getLaunchIntent(...) ```