Skip to content

Commit

Permalink
fix: punctuation grammar of welcome message (#37335)
Browse files Browse the repository at this point in the history
  • Loading branch information
josephting authored and raisedadead committed Oct 16, 2019
1 parent 881b24a commit 61b60a3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion client/src/components/welcome/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@ function Welcome({ name }) {
<Col sm={10} smOffset={1} xs={12}>
<Spacer />
<h1 className='text-center big-heading'>
{name ? 'Welcome back ' + name : 'Welcome to freeCodeCamp.org'}
{name
? 'Welcome back, ' + name + '.'
: 'Welcome to freeCodeCamp.org'}
</h1>
</Col>
</Row>
Expand Down

0 comments on commit 61b60a3

Please sign in to comment.