Skip to content

docs: fix typo #38

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Mar 3, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tutorial/simple-todos/01-creating-app.md
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ Let's see how your app is looking on mobile. You can simulate a mobile environme

<img width="500px" src="/simple-todos/assets/step01-dev-tools-mobile-toggle.png"/>

Click on it and then select the phone that you want to simulate and in the top nav bar.
Click on it and then select the phone that you want to simulate from the top nav bar.

> You can also check your app in your personal cellphone. To do so, connect to your App using your local IP in the navigation browser of your mobile browser.
>
Expand Down Expand Up @@ -200,7 +200,7 @@ You should also add the package [`dev-error-overlay`](https://atmospherejs.com/m
meteor add dev-error-overlay
```

You can try to make some mistakes and then you are going to see the errors in the browser and not only in the console.
You can try to make some mistakes and then you are going to see the errors in the browser as well as in the console.

> Review: you can check how your code should look in the end of this step [here](https://github.com/meteor/blaze-tutorial/tree/master/src/simple-todos/step01).

Expand Down
4 changes: 1 addition & 3 deletions tutorial/simple-todos/02-collections.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Meteor already sets up MongoDB for you. In order to use our database we need to

> You can read more about collections [here](http://guide.meteor.com/collections.html).

In this step we will implement all the necessary code to have a basic collection for our tasks up and running.
In this step we will implement all the necessary code to have a basic collection for our tasks, up and running.

## 2.1: Create Tasks Collection

Expand All @@ -21,8 +21,6 @@ export const TasksCollection = new Mongo.Collection('tasks');

Notice that we stored the file in the `imports/api` directory, which is a place to store API-related code, like publications and methods. You can name this folder as you want, this is just an optional way to name it.

You can delete the `links.js` file in this folder as we are not going to use this collection.

Comment on lines -24 to -25
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm going through the tutorial and this file doesn't exist so how about we just remove it?

> You can read more about app structure and imports/exports [here](http://guide.meteor.com/structure.html).

## 2.2: Initialize Tasks Collection
Expand Down