Fix typo in camera docs (#1034)

This commit is contained in:
J. Nick Koston 2021-08-22 14:53:39 -05:00 committed by GitHub
parent 2be68d6893
commit a12ebaff50
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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."""
```
```