Skip to content
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

fix: just back again with some spelling/grammar tightening up #966

Merged
merged 2 commits into from
May 16, 2024
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
11 changes: 6 additions & 5 deletions common/components/notices/BetaDataNotice.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export const BetaDataNotice: React.FC = () => {
<h3 className="text-sm font-medium text-yellow-800">Real-time bus data is in beta</h3>
<div className="mt-2 text-sm text-yellow-700">
<p>
Data shown here is collected by TransitMatters using the{' '}
TransitMatters collects this data using the{' '}
<Link
href="https://www.mbta.com/developers/v3-api/streaming"
rel="noopener noreferrer"
Expand All @@ -42,20 +42,21 @@ export const BetaDataNotice: React.FC = () => {
>
MBTA's V3 API
</Link>
. Unlike other data sources we show, this data is not cleaned or filtered in any way
before display. Please expect reduced accuracy.
. Unlike data from other sources, it is not cleaned or filtered before display.
Please expect reduced accuracy.
</p>
<p>
We favor official performance data from the MBTA when it's available. Technical
details of our data collection can be found{' '}
details of our data collection are available in our{' '}
<Link
href="https://github.com/transitmatters/gobble"
rel="noopener noreferrer"
target="_blank"
className={classNames(lineColorTextHover[line ?? 'DEFAULT'])}
>
here
GitHub repository
</Link>
.
</p>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion common/components/notices/BusDataNotice.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const BusDataNotice: React.FC = () => {
Due to data collection issues, bus data is not guaranteed to be complete for any stop or
date.
</p>
<p>This may lead to inaccuracies, particularly in headway calculations.</p>
<p>This may lead to inaccuracy, particularly in headway calculations.</p>
</div>
</div>
);
Expand Down
13 changes: 7 additions & 6 deletions common/components/notices/GobbleDataNotice.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,29 +29,30 @@ export const GobbleDataNotice: React.FC = () => {
<FontAwesomeIcon icon={faChartSimple} size={'lg'} />
<div className={'mx-3 my-2 text-sm italic'}>
<p>
Data shown here is collected by TransitMatters using the{' '}
TransitMatters collects this data using the{' '}
<Link
href="https://www.mbta.com/developers/v3-api/streaming"
rel="noopener noreferrer"
target="_blank"
className={classNames(lineColorTextHover[line ?? 'DEFAULT'])}
>
MBTA's streaming API
MBTA's V3 API
</Link>
. Unlike other data sources we show, this data is not cleaned or filtered in any way
before display. Innacuracies may be present.
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note the typo here- this is actually what caught my eye

. Unlike data from other sources, this data is not cleaned or filtered. Please expect
reduced accuracy.
</p>
<p>
Official MBTA data will be shown when available. Technical details of our data
collection can be found{' '}
collection can be found in our{' '}
<Link
href="https://github.com/transitmatters/gobble"
rel="noopener noreferrer"
target="_blank"
className={classNames(lineColorTextHover[line ?? 'DEFAULT'])}
>
here
GitHub repository
</Link>
.
</p>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion common/components/notices/TerminusNotice.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const TerminusNotice: React.FC<TerminusNoticeProps> = ({ toStation, fromS
Due to data collection issues at terminus stations, data is not guaranteed to be
complete.
</p>
<p>This may lead to inaccuracies, particularly in travel time & dwell calculations.</p>
<p>This may lead to inaccuracy, particularly in travel time & dwell calculations.</p>
</div>
</div>
);
Expand Down
Loading