Skip to content

Commit

Permalink
Minor wording change for "Download" link
Browse files Browse the repository at this point in the history
Suggesting this change simply because "ZIP" appears to be (per its specification published by PKWARE) canonically spelled uppercase.

I also added the word "archive" to provide a noun modified by "ZIP" rather than treating "ZIP" as a noun itself. It seems clearer this way, but may cause text flow issues in the design if it's too long.
  • Loading branch information
emilyst committed Mar 12, 2022
1 parent f9e9c6f commit 8ca1d65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/pages/post/[id].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ const Post = ({ theme, changeTheme }: ThemeProps) => {
<div style={{ display: 'flex', justifyContent: 'space-between', alignItems: 'center' }}>
<Text h2>{post.title} <VisibilityBadge visibility={post.visibility} /></Text>
<Button auto onClick={download}>
Download as Zip
Download as ZIP archive
</Button>
</div>
{post.files.map(({ id, content, title }: { id: any, content: string, title: string }) => (
Expand Down

0 comments on commit 8ca1d65

Please sign in to comment.