We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2538942 commit 8565c60Copy full SHA for 8565c60
src/cdk-experimental/scrolling/virtual-for-of.ts
@@ -41,7 +41,7 @@ export type CdkVirtualForOfContext<T> = {
41
};
42
43
44
-/** Helper to extract size from a ClientRect. **/
+/** Helper to extract size from a ClientRect. */
45
function getSize(orientation: 'horizontal' | 'vertical', rect: ClientRect): number {
46
return orientation == 'horizontal' ? rect.width : rect.height;
47
}
0 commit comments