Skip to content

Commit f336ca6

Browse files
committed
Fix typos
1 parent bd87296 commit f336ca6

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ If you have suggestions on how these processes can be improved, please suggest t
1212

1313
## Bug Report
1414

15-
If you are using this software and encounter some behavior that is unexpected, then you may have come accross a bug!
15+
If you are using this software and encounter some behavior that is unexpected, then you may have come across a bug!
1616
To get this fixed, first creation an issue that should have, ideally:
1717

1818
* The behavior you expected

specification/Git_REST_API.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Contents for each call include:
1010

1111
### /all_history - Get all git information of current repository
1212

13-
Request with a current_path. If the current_path is a git repository, return all the git repository information. This request contains 4 seperate requests on server side (show_top_level, branch, log, status)
13+
Request with a current_path. If the current_path is a git repository, return all the git repository information. This request contains 4 separate requests on server side (show_top_level, branch, log, status)
1414
and may fail individually, so each request has its own code to indicate execution status (zero for success, non-zero for failure)
1515
URL:
1616

specification/Git_REST_API.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ paths:
2121
Request with a current_path. If the current_path is a git repo,
2222
return all the git repo information with a code of zero. If the current_path is not a git repo,
2323
return error message with a non-zero code.
24-
This request contains 4 seperate requests on server side (showtoplevel, branch, log, status)
24+
This request contains 4 separate requests on server side (showtoplevel, branch, log, status)
2525
and may fail individually, so each request has its own code to indicate execution status
2626
(zero for success, none-zero for failure)
2727
parameters:

src/components/diff/NbDiff.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ export class NBDiff extends React.Component<IDiffProps, INBDiffState> {
162162
}
163163

164164
/**
165-
* Based on the Diff Context , calls the server API with the revant paremeters
165+
* Based on the Diff Context , calls the server API with the revant parameters
166166
* to
167167
* @param diffContext the context in which to perform the diff
168168
*/

tests/test-components/PastCommitNode.spec.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ describe('PastCommitNode', () => {
6767
expect(node.text()).toMatch(props.commit.commit_msg);
6868
});
6969

70-
test('Includes only relevent branch info', () => {
70+
test('Includes only relevant branch info', () => {
7171
const node = shallow(<PastCommitNode {...props} />);
7272
expect(node.text()).toMatch('name3');
7373
expect(node.text()).toMatch('name4');

0 commit comments

Comments
 (0)