From 2f6508ca03dfac55e2fe5ff9674e4dd1a0021d93 Mon Sep 17 00:00:00 2001 From: Jay Newstrom Date: Tue, 12 Jun 2018 06:18:29 -0700 Subject: [PATCH] Fix typo in stetho documentation. Summary: Closes https://github.com/facebook/Sonar/pull/17 Differential Revision: D8379391 Pulled By: danielbuechele fbshipit-source-id: 3eef14299f64b590c0e68624b17468f45111921c --- docs/stetho.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/stetho.md b/docs/stetho.md index 2ff631642..eff3e7592 100644 --- a/docs/stetho.md +++ b/docs/stetho.md @@ -4,7 +4,7 @@ title: Stetho Guidance sidebar_label: Stetho Guidance --- -In 2015, we introduced [Stetho](http://facebook.github.io/stetho/), an Android debugging bridge built on top of Chrome dev tools. While it was a valuable tool to us and many members of the community, we felt that it limited us in what we could do with it. Stetho is Android-only and while Chrome dev tools gave us a nice foundation to build upon, they also limited us in what we could build. Stetho is an Android tool and Chrome dev tools is built for web developers. This means we can only provide a good experience for the intersection of those two development environments, which was very limiting. With Sonar being built as a standalone app, we can do more things, like handling adb connections and supporting iOS, which wouldn't easily achievable with stetho. +In 2015, we introduced [Stetho](http://facebook.github.io/stetho/), an Android debugging bridge built on top of Chrome dev tools. While it was a valuable tool to us and many members of the community, we felt that it limited us in what we could do with it. Stetho is Android-only and while Chrome dev tools gave us a nice foundation to build upon, they also limited us in what we could build. Stetho is an Android tool and Chrome dev tools is built for web developers. This means we can only provide a good experience for the intersection of those two development environments, which was very limiting. With Sonar being built as a standalone app, we can do more things, like handling adb connections and supporting iOS, which wasn't easily achievable with stetho. This is why we built Sonar. We wanted to create a platform that gives us all the flexibility we need to build more advanced features and support for iOS. One of Sonar's core concept is it's extensibility using [plugins](create-plugin.md). Plugins are written in react and we provide a set of ready-to-use UI components that allows developers to build great plugin UIs with a few lines of code.