Use prettierx and eslint native (#85)
[poolifier.git] / CHANGELOG.md
index 8479f0429b42ef98a0bdcfd38917728cda09f576..02624b45619c05a14917e0d3aa1fadc5e716d53c 100644 (file)
@@ -15,18 +15,18 @@ We changed some internal structures, but you shouldn't be too affected by them a
 
 ```js
 // Before
-const DynamicThreadPool = require("poolifier/lib/dynamic");
+const DynamicThreadPool = require('poolifier/lib/dynamic')
 // After
-const { DynamicThreadPool } = require("poolifier/lib/dynamic");
+const { DynamicThreadPool } = require('poolifier/lib/dynamic')
 ```
 
 But you should always prefer just using
 
 ```js
-const { DynamicThreadPool } = require("poolifier");
+const { DynamicThreadPool } = require('poolifier')
 ```
 
-#### Internal (protected) methods has renamed
+#### Internal (protected) methods renaming
 
 Those methods are not intended to be used from final users