Skip to content
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

docs: fix typo #38

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
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
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
2 changes: 1 addition & 1 deletion tutorial/simple-todos/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ In this tutorial we will build a simple to-do tasks app using [Blaze](https://ww

Blaze is a powerful library for creating user interfaces by writing reactive HTML templates. Usually, templates are written in Spacebars, a variant of Handlebars designed to take advantage of Tracker, Meteor’s reactivity system. These templates are compiled into JavaScript UI components that are rendered by the Blaze library.

To develop your app, you will need a a code editor. If you don't have any editor of your choice, a great option is to install [Visual Studio Code](https://code.visualstudio.com/). After installing it, you can and the [Meteor Toolbox extension](https://marketplace.visualstudio.com/items?itemName=meteor-toolbox.meteor-toolbox) to enable intelisense for Meteor core and packages. This extension also adds launch configurations for the browser (run/debug).
To develop your app, you will need a a code editor. If you don't have any editor of your choice, a great option is to install [Visual Studio Code](https://code.visualstudio.com/). After installing it, you can add the [Meteor Toolbox extension](https://marketplace.visualstudio.com/items?itemName=meteor-toolbox.meteor-toolbox) to enable intelisense for Meteor core and packages. This extension also adds launch configurations for the browser (run/debug).

Meteor works out-of-the-box with several other frameworks like [React](https://reactjs.org), [Svelte](https://svelte.dev/) and [Vue](https://guide.meteor.com/vue.html). We recommend you check out all of our [tutorials](https://www.meteor.com/tutorials).

Expand Down