Skip to content

Commit

Permalink
fix spelling exercice
Browse files Browse the repository at this point in the history
  • Loading branch information
OCTO-FRAH committed Nov 27, 2020
1 parent 99d4ea0 commit b73882c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/frontend/src/pages/Chapter/Chapter.view.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ export const ChapterView = ({
{Object.keys(supports).length > 0 && (
<div style={{ overflow: 'scroll' }}>
<ChapterTab isSelected={display === 'solution'} onClick={() => setDisplay('solution')}>
Exercice
Exercise
</ChapterTab>
{Object.keys(supports).map((key, index) => (
<ChapterTab isSelected={display === key} onClick={() => setDisplay(key)}>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Entry point names are written in the form of: _%myEntryPoint_ for the entry poin

## Your mission

Consider the following smart contracts : Squadron and Central (Exercice).
Consider the following smart contracts : Squadron and Central (Exercise).

The Central contract acts as an inventory of ships (an entry point _RegisterShip_ is provided to register a ship).
The Central contract can provide information of a ship to a calling contract via a callback transaction (an entry point _RetrieveShip_ is provided to query a ship).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Entry point names are written in the form of: _%myEntryPoint_ for the entry poin

## Your mission

Consider the following smart contracts : Squadron and Central (Exercice).
Consider the following smart contracts : Squadron and Central (Exercise).

The Central contract acts as an inventory of ships (an entry point _RegisterShip_ is provided to register a ship).
The Central contract can provide information of a ship to a calling contract via a callback transaction (an entry point _RetrieveShip_ is provided to query a ship).
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Entry point names are written in the form of: _%myEntryPoint_ for the entry poin

## Your mission

Consider the following smart contracts : Squadron and Central (Exercice).
Consider the following smart contracts : Squadron and Central (Exercise).

The Central contract acts as an inventory of ships (an entry point _RegisterShip_ is provided to register a ship).
The Central contract can provide information of a ship to a calling contract via a callback transaction (an entry point _RetrieveShip_ is provided to query a ship).
Expand Down
2 changes: 1 addition & 1 deletion src/frontend/src/pages/Home/Home.view.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ export const HomeView = () => {

<HomeEditor>
<h1>Interactive editor with git-diff solutions</h1>
<p>Type your solution to each exercice online and compare with the solution</p>
<p>Type your solution to each exercise online and compare with the solution</p>
<img alt="editor" src="/images/editor.png" />
</HomeEditor>

Expand Down

0 comments on commit b73882c

Please sign in to comment.