Summary: renaming flipper in docs

Reviewed By: passy

Differential Revision: D9871491

fbshipit-source-id: 7a7dcc8421229f3a253efc6a49202dad5c7315d0
This commit is contained in:
Daniel Büchele
2018-09-18 06:38:30 -07:00
committed by Facebook Github Bot
parent 3e4c24d6fe
commit 159ce69bc8
7 changed files with 37 additions and 37 deletions

View File

@@ -3,7 +3,7 @@ id: leak-canary-plugin
title: LeakCanary
---
The LeakCanary plugin provides developers with Sonar support for [LeakCanary](https://github.com/square/leakcanary), an open source memory leak detection library.
The LeakCanary plugin provides developers with Flipper support for [LeakCanary](https://github.com/square/leakcanary), an open source memory leak detection library.
## Setup
@@ -11,7 +11,7 @@ Note: this plugin is only available for Android.
### Android
First, add the plugin to your Sonar client instance:
First, add the plugin to your Flipper client instance:
```java
import com.facebook.sonar.plugins.leakcanary.LeakCanarySonarPlugin;
@@ -29,5 +29,5 @@ RefWatcher refWatcher = LeakCanary.refWatcher(this)
## Usage
Leaks detected by LeakCanary will appear automatically in Sonar. Each leak will display a hierarchy of objects, beginning from the garbage collector root and ending at the leaked class.
Leaks detected by LeakCanary will appear automatically in Flipper. Each leak will display a hierarchy of objects, beginning from the garbage collector root and ending at the leaked class.
Selecting any object in this list will display contents of the object's various fields.