Merge pull request #134 from fate-grand-order/master

fix typo
This commit is contained in:
Manuel Alejandro de Brito Fontes 2017-01-16 10:04:40 -03:00 committed by GitHub
commit e55d13d007
2 changed files with 2 additions and 2 deletions

View file

@ -37,7 +37,7 @@ const (
Sync Sync
// Get used to record Get from a sync pool. // Get used to record Get from a sync pool.
Get Get
// Create used to recrod creations in a sync pool. // Create used to record creations in a sync pool.
Create Create
// Update used to record updates in a sync pool. // Update used to record updates in a sync pool.
Update Update

View file

@ -163,7 +163,7 @@ func run(deploy deployer) error {
// //
// TODO: We should try calling deploy.Down exactly once. Though to // TODO: We should try calling deploy.Down exactly once. Though to
// stop the leaking resources for now, we want to be on the safe side // stop the leaking resources for now, we want to be on the safe side
// and call it explictly in defer if the other one is not called. // and call it explicitly in defer if the other one is not called.
if *down { if *down {
defer xmlWrap("Deferred TearDown", deploy.Down) defer xmlWrap("Deferred TearDown", deploy.Down)
} }