mattmcmanus / atom-ember-snippets

Ember.js ES6 snippets for Atom
https://atom.io/packages/ember-snippets
MIT License
38 stars 22 forks source link

imisHtmlSafe write incorrect code #36

Closed cdatehortuab closed 6 years ago

cdatehortuab commented 6 years ago

The snippet imisHtmlSafe is generating

import { isHtmlSafe } from '@ember/string';

but this code makes build fail. The correct code is:

import { isHTMLSafe } from '@ember/string';

Thanks.

mattmcmanus commented 6 years ago

Thanks @cdatehortuab. I just made the correction.