Skip to content

Commit 7c8d3f5

Browse files
Fix language edit issues
Changed spelling of behavior, fixed name of app, and fixed description
1 parent 3edd7eb commit 7c8d3f5

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

python-dash/apps/app_1/app.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212

1313
app.layout = html.Div(
1414
children=[
15-
html.H1(children="Avocados Analytics",),
15+
html.H1(children="Avocado Analytics",),
1616
html.P(
17-
children="Analyze the behaviour of prices"
17+
children="Analyze the behavior of avocado prices"
1818
" and the number of avocados sold in the US"
1919
" between 2015 and 2018",
2020
),

python-dash/apps/app_2/app.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
},
1717
]
1818
app = dash.Dash(__name__, external_stylesheets=external_stylesheets)
19-
app.title = "Avocados Analytics: Understand Your Avocados!"
19+
app.title = "Avocado Analytics: Understand Your Avocados!"
2020

2121
app.layout = html.Div(
2222
children=[
@@ -27,7 +27,7 @@
2727
children="Avocados Analytics", className="header-title"
2828
),
2929
html.P(
30-
children="Analyze the behaviour of prices"
30+
children="Analyze the behavior of avocado prices"
3131
" and the number of avocados sold in the US"
3232
" between 2015 and 2018",
3333
className="header-description",

python-dash/apps/app_3/app.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,18 @@
1717
},
1818
]
1919
app = dash.Dash(__name__, external_stylesheets=external_stylesheets)
20-
app.title = "Avocados Analytics: Understand Your Avocados!"
20+
app.title = "Avocado Analytics: Understand Your Avocados!"
2121

2222
app.layout = html.Div(
2323
children=[
2424
html.Div(
2525
children=[
2626
html.P(children="🥑", className="header-emoji"),
2727
html.H1(
28-
children="Avocados Analytics", className="header-title"
28+
children="Avocado Analytics", className="header-title"
2929
),
3030
html.P(
31-
children="Analyze the behaviour of prices"
31+
children="Analyze the behavior of avocado prices"
3232
" and the number of avocados sold in the US"
3333
" between 2015 and 2018",
3434
className="header-description",

python-dash/apps/app_4/app.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,18 @@
1818
]
1919
app = dash.Dash(__name__, external_stylesheets=external_stylesheets)
2020
server = app.server
21-
app.title = "Avocados Analytics: Understand Your Avocados!"
21+
app.title = "Avocado Analytics: Understand Your Avocados!"
2222

2323
app.layout = html.Div(
2424
children=[
2525
html.Div(
2626
children=[
2727
html.P(children="🥑", className="header-emoji"),
2828
html.H1(
29-
children="Avocados Analytics", className="header-title"
29+
children="Avocado Analytics", className="header-title"
3030
),
3131
html.P(
32-
children="Analyze the behaviour of prices"
32+
children="Analyze the behavior of avocado prices"
3333
" and the number of avocados sold in the US"
3434
" between 2015 and 2018",
3535
className="header-description",

0 commit comments

Comments
 (0)