Skip to content

Commit

Permalink
Add period to the end of an assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
Justin Campbell committed Oct 13, 2020
1 parent e6da823 commit 62409e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Assignment/Assignment.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import RelativeTime from "react-relative-time";
export default function Assignment({ by, to, datetime }){
return (
<Typography>
<b>{by}</b> assigned this to <b>{to}</b> <RelativeTime value={new Date(datetime)} />
<b>{by}</b> assigned this to <b>{to}</b> <RelativeTime value={new Date(datetime)} />.
</Typography>
);
}
Expand Down

0 comments on commit 62409e6

Please sign in to comment.