From a12ebaff508367db42733ac5d8f44fbcf47c59d1 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Sun, 22 Aug 2021 14:53:39 -0500 Subject: [PATCH] Fix typo in camera docs (#1034) --- docs/core/entity/camera.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/core/entity/camera.md b/docs/core/entity/camera.md index 28bfcacc..da889002 100644 --- a/docs/core/entity/camera.md +++ b/docs/core/entity/camera.md @@ -24,7 +24,7 @@ Properties should always only return information from memory and not do I/O (lik ### Camera Image -When the width and height as passed, scaling should be done on a best-effort basis. The UI will fall back to scaling at the display layer if scaling cannot be done by the camera. +When the width and height are passed, scaling should be done on a best-effort basis. The UI will fall back to scaling at the display layer if scaling cannot be done by the camera. - Integrations should pass on the width and height if the underlying camera is capable of scaling the image. @@ -111,4 +111,4 @@ class MyCamera(Camera): async def async_disable_motion_detection(self) -> None: """Disable motion detection in camera.""" -``` \ No newline at end of file +```