From a82023f8b09f605f95be0af7cfcccd8e651d5346 Mon Sep 17 00:00:00 2001 From: chaitanyaphatak Date: Sun, 16 Aug 2026 14:54:51 +0530 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D(docs)=20fix=20minor=20typos=20in?= =?UTF-8?q?=20comments=20and=20docstrings?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 4 ++++ SECURITY.md | 2 +- src/frontend/src/features/chat/components/ChatProvider.tsx | 2 +- .../livekit/components/blur/BackgroundCustomProcessor.ts | 4 ++-- src/summary/summary/core/models.py | 2 +- 5 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 454f0230..905f0872 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,10 @@ and this project adheres to ## [Unreleased] +### Fixed + +- 📝(docs) fix minor typos in comments and docstrings + ## [1.27.0] - 2026-08-14 ### Changed diff --git a/SECURITY.md b/SECURITY.md index 7493b05a..0bb26712 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -4,7 +4,7 @@ Security is very important to us. -If you have any issue regarding security, please disclose the information responsibly submiting [this form](https://vdp.numerique.gouv.fr/p/Send-a-report?lang=en) and not by creating an issue on the repository. You can also email us at visio@numerique.gouv.fr +If you have any issue regarding security, please disclose the information responsibly by submitting [this form](https://vdp.numerique.gouv.fr/p/Send-a-report?lang=en) and not by creating an issue on the repository. You can also email us at visio@numerique.gouv.fr We appreciate your effort to make Visio more secure. diff --git a/src/frontend/src/features/chat/components/ChatProvider.tsx b/src/frontend/src/features/chat/components/ChatProvider.tsx index 8a76578e..b7564563 100644 --- a/src/frontend/src/features/chat/components/ChatProvider.tsx +++ b/src/frontend/src/features/chat/components/ChatProvider.tsx @@ -23,7 +23,7 @@ export const ChatProvider = () => { resetChatStore() }, []) - // Tigger the message notification (temporary) + // Trigger the message notification (temporary) useEffect(() => { // TEMPORARY: This is a brittle workaround that relies on message count tracking // due to recent LiveKit useChat changes breaking the previous implementation diff --git a/src/frontend/src/features/rooms/livekit/components/blur/BackgroundCustomProcessor.ts b/src/frontend/src/features/rooms/livekit/components/blur/BackgroundCustomProcessor.ts index 24cc8a77..9259a961 100644 --- a/src/frontend/src/features/rooms/livekit/components/blur/BackgroundCustomProcessor.ts +++ b/src/frontend/src/features/rooms/livekit/components/blur/BackgroundCustomProcessor.ts @@ -44,7 +44,7 @@ export class BackgroundCustomProcessor implements BackgroundProcessorInterface { videoElement?: HTMLVideoElement videoElementLoaded?: boolean - // Canvas containg the video processing result, of which we extract as stream. + // Canvas containing the video processing result, of which we extract as stream. outputCanvas?: HTMLCanvasElement outputCanvasCtx?: CanvasRenderingContext2D @@ -55,7 +55,7 @@ export class BackgroundCustomProcessor implements BackgroundProcessorInterface { segmentationMaskCanvas?: HTMLCanvasElement segmentationMaskCanvasCtx?: CanvasRenderingContext2D - // Mask containg the inference result. + // Mask containing the inference result. segmentationMask?: ImageData // The resized image of the video source. diff --git a/src/summary/summary/core/models.py b/src/summary/summary/core/models.py index e91f100b..072190b1 100644 --- a/src/summary/summary/core/models.py +++ b/src/summary/summary/core/models.py @@ -26,7 +26,7 @@ class RecordingMetadata(BaseModel): cloud_storage_url: Url = Field( title="Cloud Storage URL", - description="The URL of the metadata file for speaker assignement.", + description="The URL of the metadata file for speaker assignment.", ) started_at: AwareDatetime = Field(title="Start time of the recording to transcribe") ended_at: AwareDatetime = Field(title="End time of the recording to transcribe")