Skip to content

Commit

Permalink
fix: just back again with some spelling/grammar tightening up (#966)
Browse files Browse the repository at this point in the history
Co-authored-by: Devin Matte <[email protected]>
  • Loading branch information
mathcolo and devinmatte committed May 16, 2024
1 parent f2a9553 commit 82a305d
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 13 deletions.
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.
. 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

0 comments on commit 82a305d

Please sign in to comment.