Skip to content

Commit 2fa6e09

Browse files
committed
2 parents 3dd5bbb + 400f30d commit 2fa6e09

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/example-membership/lib/server/seed.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ const createUser = async (username, email) => {
5959
const createDummyUsers = async () => {
6060
// eslint-disable-next-line no-console
6161
console.log('// inserting dummy users…');
62-
Promise.all([
62+
return Promise.all([
6363
createUser('Bruce', 'dummyuser1@telescopeapp.org'),
6464
createUser('Arnold', 'dummyuser2@telescopeapp.org'),
6565
createUser('Julia', 'dummyuser3@telescopeapp.org'),

packages/example-simple/lib/modules/routes.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// modules/routes.js #tutorial-step-6 -
2-
// Thi is the file that is called into package.js that allows the component to be found.
2+
// This is the file that is called into package.js that allows the component to be found.
33

44
// First, we import this from vulcan core, which is a utility to add a new route.
55
import { addRoute, Components } from 'meteor/vulcan:core';

0 commit comments

Comments
 (0)