Fix a typo in GettingStarted.md

Summary: Closes https://github.com/facebook/metro/pull/164

Differential Revision: D7706952

Pulled By: cpojer

fbshipit-source-id: 397788508cb3a8202730f58f5d1a2b794ff46d14
This commit is contained in:
Sunny Luo 2018-04-20 02:27:35 -07:00 committed by Facebook Github Bot
parent 585a0def32
commit f16bbae30d
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@ If you would like to plug-in babel, you can simply do that by passing the code t
const {transformSync} = require('@babel/core');
module.exports.transform = file => {
return transform(file.src, {
return transformSync(file.src, {
// Babel options...
});
};