Fix spelling: permanant->permanent

This commit is contained in:
Andrew Hoang
2018-05-08 13:15:52 -04:00
parent fbde67d1bd
commit 5d413a2679
2 changed files with 2 additions and 2 deletions

View File

@@ -43,7 +43,7 @@ class CollectionDelete extends Component {
<form onSubmit={this.handleSubmit}> <form onSubmit={this.handleSubmit}>
<HelpText> <HelpText>
Are you sure? Deleting the <strong>{collection.name}</strong>{' '} Are you sure? Deleting the <strong>{collection.name}</strong>{' '}
collection is permanant and will also delete all of the documents collection is permanent and will also delete all of the documents
within it, so be careful with that. within it, so be careful with that.
</HelpText> </HelpText>
<Button type="submit" danger> <Button type="submit" danger>

View File

@@ -43,7 +43,7 @@ class DocumentDelete extends Component {
<form onSubmit={this.handleSubmit}> <form onSubmit={this.handleSubmit}>
<HelpText> <HelpText>
Are you sure? Deleting the <strong>{document.title}</strong>{' '} Are you sure? Deleting the <strong>{document.title}</strong>{' '}
document is permanant and will also delete all of its history. document is permanent and will also delete all of its history.
</HelpText> </HelpText>
<Button type="submit" danger> <Button type="submit" danger>
{this.isDeleting ? 'Deleting…' : 'Delete'} {this.isDeleting ? 'Deleting…' : 'Delete'}