Skip to content

Commit d00d0eb

Browse files
committed
chore: fix class name for analyse UUID operation
1 parent ab2cfa6 commit d00d0eb

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

Diff for: src/core/operations/AnalyseUUID.mjs

+6-5
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,18 @@
44
* @license Apache-2.0
55
*/
66

7-
import Operation from "../Operation.mjs";
87
import * as uuid from "uuid";
8+
9+
import Operation from "../Operation.mjs";
910
import OperationError from "../errors/OperationError.mjs";
1011

1112
/**
12-
* Analyse hash operation
13+
* Analyse UUID operation
1314
*/
14-
class AnalyseHash extends Operation {
15+
class AnalyseUUID extends Operation {
1516

1617
/**
17-
* AnalyseHash constructor
18+
* AnalyseUUID constructor
1819
*/
1920
constructor() {
2021
super();
@@ -44,4 +45,4 @@ class AnalyseHash extends Operation {
4445

4546
}
4647

47-
export default AnalyseHash;
48+
export default AnalyseUUID;

0 commit comments

Comments
 (0)