Skip to content

chore: fix miscellaneous typos in comments #15783

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 16, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/cdk/a11y/focus-monitor/focus-monitor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ type MonitoredElementInfo = {

/**
* Event listener options that enable capturing and also
* mark the the listener as passive if the browser supports it.
* mark the listener as passive if the browser supports it.
*/
const captureEventListenerOptions = normalizePassiveListenerOptions({
passive: true,
Expand Down
2 changes: 1 addition & 1 deletion src/cdk/scrolling/virtual-scroll-viewport.scss
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// When elements such as `<tr>` or `<li>` are repeated inside the cdk-virtual-scroll-viewport,
// their container element (e.g. `<table>`, `<ul>`, etc.) needs to be placed in the viewport as
// well. We reset some properties here to prevent these container elements from introducing
// additional space that would throw off the the scrolling calculations.
// additional space that would throw off the scrolling calculations.
@mixin _cdk-virtual-scroll-clear-container-space($direction) {
$start: if($direction == horizontal, 'left', 'top');
$end: if($direction == horizontal, 'right', 'bottom');
Expand Down
2 changes: 1 addition & 1 deletion src/module-typings.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Declares the global `module` variable that can be used outside of NodeJS.
*
* The module variable will be provided by given module bundlers (like Webpack) and helps
* Angular to determine assets relatively to the the original file location. All components
* Angular to determine assets relatively to the original file location. All components
* within the CDK and Material specify the `module.id`.
*
* **Note**: This file is used by Bazel to build all `ng_module` rules. See `tools/defaults.bzl`.
Expand Down