Skip to content

Commit 73f0ee1

Browse files
pgrimaudzebateira
authored andcommitted
docs: fix typos
1 parent 4289cba commit 73f0ee1

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

CODE_OF_CONDUCT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ members of the project's leadership.
7373
Please note that the organizers of each local ProtoSchool [event](https://proto.school/#/events)
7474
maintain their own Code of Conduct with additional guidance for local events and
7575
any related websites or repositories. To report instances of abusive, harassing, or
76-
otherwise unacceptable behavior that have occured within local events or repos,
76+
otherwise unacceptable behavior that have occurred within local events or repos,
7777
please reach out to your local leadership team using the contact information
7878
provided in their CoC.
7979

DESIGNING_TUTORIALS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ We're currently focused on improving our platform and growing our curriculum on
9696
### Creating an effective learner experience
9797

9898
#### Know your audience
99-
- Your tutorial should be aimed at a specific audience level, typically beginner and ocassionally intermediate given our current curriculum.
99+
- Your tutorial should be aimed at a specific audience level, typically beginner and occasionally intermediate given our current curriculum.
100100
- Do your users need to already be familiar with certain concepts before starting your tutorial? Use the first lesson as a place to set out your expectations, linking to other tutorials or beginner-friendly learning materials they should review before starting your tutorial.
101101
- Don't go into detail on advanced concepts in a tutorial aimed at beginners. If you think of a related, more advanced topic that users might be interested to learn more about, consider including an aside in your text with a link to where they can learn more.
102102
- Use the resources page at the end of your tutorial to suggest next steps for further learning, linking to specific tutorials, videos or articles that build on the concepts you've just taught.

DEVELOPING_TUTORIALS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ By keeping your server running, you can preview your new tutorial in a web brows
184184

185185
Answer a few quick questions about your tutorial and the ProtoWizard will use your responses to set up both a directory for your tutorial (eg `src/tutorials/0007-my-new-tutorial`) and the necessary metadata (title, description, etc.) to display the tutorial on our website. When finished, the ProtoWizard will let you know where to go to preview your new tutorial in your web browser.
186186

187-
While the ProtoWizard only supports the intial creation of this data, you can edit the details later in `src/static/tutorials.json`. If you need to do this, please read [Manage Your Tutorial's Metadata](#manage-your-tutorials-metadata) for more information.
187+
While the ProtoWizard only supports the initial creation of this data, you can edit the details later in `src/static/tutorials.json`. If you need to do this, please read [Manage Your Tutorial's Metadata](#manage-your-tutorials-metadata) for more information.
188188

189189
**Lessons**
190190

@@ -777,7 +777,7 @@ The properties exported from this file depend on the lesson type, as follows:
777777

778778
### `utils` module
779779

780-
This module is a set of utils designed to be re-used accross the validation code of different tutorials.
780+
This module is a set of utils designed to be re-used across the validation code of different tutorials.
781781

782782
#### `utils.format`
783783

src/tutorials/0004-mutable-file-system/09.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
type: "file-upload"
44
---
55

6-
Unlike `files.mv`, which removes items from their source path when moving them to their desination path, the [`files.cp`](https://github.com/ipfs/js-ipfs/blob/master/docs/core-api/FILES.md#filescp) method allows you to a copy a file or directory to a new location while also leaving it intact at its source.
6+
Unlike `files.mv`, which removes items from their source path when moving them to their designation path, the [`files.cp`](https://github.com/ipfs/js-ipfs/blob/master/docs/core-api/FILES.md#filescp) method allows you to a copy a file or directory to a new location while also leaving it intact at its source.
77

88
The method looks like this:
99
```js

src/tutorials/0004-mutable-file-system/10.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ ipfs.files.read(path, [options])
1313

1414
The `path` provided is the path of the file to read, and it must point to a file rather than a directory.
1515

16-
The `files.read` method returns an Async Iterable that iterates over the file's chunks of data, i.e. Buffers. In our case, we ultimately need to convert Buffers into strings using the method `toString()`. However, the chunks of data within a single file need to be reassembled (concatenated) before the conversion. The [`it-to-buffer`](https://www.npmjs.com/package/it-to-buffer) package can iterate over all of the chunks and put them back together for us. (We've made this package availabe to you in our challenges as `toBuffer`.)
16+
The `files.read` method returns an Async Iterable that iterates over the file's chunks of data, i.e. Buffers. In our case, we ultimately need to convert Buffers into strings using the method `toString()`. However, the chunks of data within a single file need to be reassembled (concatenated) before the conversion. The [`it-to-buffer`](https://www.npmjs.com/package/it-to-buffer) package can iterate over all of the chunks and put them back together for us. (We've made this package available to you in our challenges as `toBuffer`.)
1717

1818
```js
1919
// the toBuffer variable is globally available (just like ipfs)

src/tutorials/0006-anatomy-of-a-cid/02.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
type: "multiple-choice"
44
---
55

6-
Occassionally, a hashing algorithm may be proven to be insecure, meaning it no longer complies with the characteristics that we defined earlier. This has already happened with `sha1`. With time, other algorithms may prove to be insufficient for content addressing in IPFS and other distributed information systems. For this reason, and in order to support multiple cryptographic algorithms, **we need to be able to know which algorithm was used to generate the hash** of specific content.
6+
Occasionally, a hashing algorithm may be proven to be insecure, meaning it no longer complies with the characteristics that we defined earlier. This has already happened with `sha1`. With time, other algorithms may prove to be insufficient for content addressing in IPFS and other distributed information systems. For this reason, and in order to support multiple cryptographic algorithms, **we need to be able to know which algorithm was used to generate the hash** of specific content.
77

88
![What is the hashing algorithm used in a hash?](tutorial-assets/T0006L02-what-algo.jpg)
99

0 commit comments

Comments
 (0)