From aa035941b8af8b75f575d52ef22e436f14103b14 Mon Sep 17 00:00:00 2001 From: Diogo Correia Date: Tue, 10 Dec 2024 16:10:17 +0000 Subject: [PATCH] CELE-116 Code comment typo --- .../frontend/src/components/viewers/EM/EMStackTilesViewer.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/visualizer/frontend/src/components/viewers/EM/EMStackTilesViewer.tsx b/applications/visualizer/frontend/src/components/viewers/EM/EMStackTilesViewer.tsx index 44ec346d..80539280 100644 --- a/applications/visualizer/frontend/src/components/viewers/EM/EMStackTilesViewer.tsx +++ b/applications/visualizer/frontend/src/components/viewers/EM/EMStackTilesViewer.tsx @@ -100,7 +100,7 @@ function synapsesStyle(feature: FeatureLike, workspace: Workspace): Style { return activeSynapseStyle(feature); } -// LayerSelect specified a layer for features to be selected from and an handler function to be called if features are found. +// LayerSelect specifies a layer for features to be selected from and a handler function to be called if a feature are found. // The handler next function forces a jump to the next layer selector. type LayerSelector = [VectorLayer | undefined, (feature: Feature, next: () => void) => void];