From 191f83b8dc3b7568dad7fb9f5ba89ca9b0526840 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Wed, 4 Jan 2023 13:40:39 +1100 Subject: [PATCH] docs: typos (#10145) There were small typos in: - apps/automated/src/ui/web-view/web-view.md - tools/notes/DevelopmentWorkflow.md Fixes: - Should read `describe` rather than `decribe`. - Should read `control` rather than `controll`. Signed-off-by: Tim Gates --- apps/automated/src/ui/web-view/web-view.md | 2 +- tools/notes/DevelopmentWorkflow.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/automated/src/ui/web-view/web-view.md b/apps/automated/src/ui/web-view/web-view.md index d8153f056..e9eb228ac 100644 --- a/apps/automated/src/ui/web-view/web-view.md +++ b/apps/automated/src/ui/web-view/web-view.md @@ -34,4 +34,4 @@ Using a WebView requires the web-view module. {%snippet web-view-loaded%} ->Note: to be able to use gestures in `WebView` component on Android, we should first disabled the zoom control. To do that we could access the `android` property and with the help of `setDisplayZoomControls` to set this controll to `false`. +>Note: to be able to use gestures in `WebView` component on Android, we should first disabled the zoom control. To do that we could access the `android` property and with the help of `setDisplayZoomControls` to set this control to `false`. diff --git a/tools/notes/DevelopmentWorkflow.md b/tools/notes/DevelopmentWorkflow.md index 4bafcb872..960629cb7 100644 --- a/tools/notes/DevelopmentWorkflow.md +++ b/tools/notes/DevelopmentWorkflow.md @@ -48,7 +48,7 @@ npx nx run core:test --watch ### Isolate tests by name -Run a single test by it's decribe name, for example to run just the `xml/index.spec.ts`, the describe block is named `XmlParser` therefore: +Run a single test by it's describe name, for example to run just the `xml/index.spec.ts`, the describe block is named `XmlParser` therefore: ``` npx nx run core:test --watch -t 'XmlParser'