Skip to content

Commit

Permalink
fix: clarify the language in the save form
Browse files Browse the repository at this point in the history
  • Loading branch information
ajmacdonald committed Nov 8, 2018
1 parent 7bf1398 commit 43903cf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Save.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,20 +37,20 @@ const SaveForm = ({handleRepoChangeCB, handlePathChangeCB, saveFileCB, saveFileA
<Modal.Body>
<Form>
<FormGroup controlId="repo" validationState={null}>
<ControlLabel>Repository Name</ControlLabel>
<ControlLabel>Repository Path</ControlLabel>
<FormControl
type="text"
value={repo}
onChange={handleRepoChangeCB}/>
<HelpBlock>The repository to which to save in your github account (e.g., jchartrand/cheeses)</HelpBlock>
<HelpBlock>[GitHub-user-ID]/[GitHub-repository] (e.g., jchartrand/cheeses)</HelpBlock>
</FormGroup>
<FormGroup controlId="path" validationState={null}>
<ControlLabel>Path</ControlLabel>
<ControlLabel>File Path</ControlLabel>
<FormControl
type="text"
value={path}
onChange={handlePathChangeCB} />
<HelpBlock>The path to which to save (e.g., french/basque/SaintSauveur.xml)</HelpBlock>
<HelpBlock>The repository path to which to save (e.g., french/basque/SaintSauveur.xml)</HelpBlock>
</FormGroup>
</Form>
</Modal.Body>
Expand Down

0 comments on commit 43903cf

Please sign in to comment.