Skip to content

Commit 3302afd

Browse files
committed
fix: missing space in warning message
Noticed this via [1]. [1] https://lgtm.com/projects/g/db-migrate/node-db-migrate/alerts?mode=list Signed-off-by: Matt Riedemann <[email protected]>
1 parent 68fd0d5 commit 3302afd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/methods/v2/translatestate.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ const methods = {
5252
);
5353
log.warn(
5454
`This index did not exist at the time of deleting it. ` +
55-
`This can happen if an index was created by hand and then deleted` +
55+
`This can happen if an index was created by hand and then deleted ` +
5656
`by db-migrate. Make sure to recreate it by hand to avoid any problems.`
5757
);
5858
return Promise.resolve();

0 commit comments

Comments
 (0)