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 some spelling mistake #5134

Merged
merged 1 commit into from
Aug 29, 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 test/backup_only.py
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ def _backup_only(self, t, initial_backup=False):
def test_tablet_initial_backup(self):
self._test_initial_backup()

# Restore the Shard from the inital backup
# Restore the Shard from the initial backup
self._init_tablets(init=False,start=False)

# Restore the Tablets
Expand Down
2 changes: 1 addition & 1 deletion test/prepared_statement_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"options": [
"New York Bulls",
"Los Angeles Kings",
"Golden State Warriros",
"Golden State Warriors",
"Huston Rocket"
],
"answer": "Huston Rocket"
Expand Down
2 changes: 1 addition & 1 deletion test/vtbackup.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def start_vtbackup(self,
"-init_db_sql_file",init_db
])

# Pass through inital_backup flag to vtbackup
# Pass through initial_backup flag to vtbackup
if initial_backup:
args.extend(["-initial_backup"])

Expand Down
2 changes: 1 addition & 1 deletion web/vtctld2/app/plotly-latest.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion web/vtctld2/src/app/status/heatmap.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ export class HeatmapComponent implements AfterViewInit, OnInit {
let elem = <any>(document.getElementById(this.name));

// onClick handler for the heatmap.
// Upon clicking, the popup will display all relevent data for that data point.
// Upon clicking, the popup will display all relevant data for that data point.
elem.on('plotly_click', function(data) {
this.zone.run(() => { this.showPopup = false; });
let shardIndex = this.xLabels.indexOf(data.points[0].x);
Expand Down