From 22153c410b74f593aefd37cc27578ea5bb87d6c2 Mon Sep 17 00:00:00 2001 From: Jon Willis Date: Wed, 7 Feb 2018 10:01:08 -0800 Subject: [PATCH] Fixup startDebugServer() documentation It seems that startRenderInspectorServer() was renamed to startDebugServer() --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 47caeadf..303880d0 100644 --- a/README.md +++ b/README.md @@ -289,7 +289,7 @@ Changes in the collection results in fine grain table changes (add/remove/move c When the app is run in the simulator it is possible to inspect Render components, their properties and state with the [inspector companion mac app](https://github.com/alexdrone/Render/raw/master/inspector/dist/render-inspector.zip). -To enable the debug server in your app you simply have to import the `RenderInspector` framework and call `startRenderInspectorServer()` in your AppDelegate `application(_:didFinishLaunchingWithOptions)`. +To enable the debug server in your app you simply have to import the `RenderInspector` framework and call `startDebugServer()` in your AppDelegate `application(_:didFinishLaunchingWithOptions)`. ```swift @@ -300,7 +300,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate { func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool { /// Starts the debug server at localhost:8080/inspect - startRenderInspectorServer() + startDebugServer() ... } ```