Skip to content

Commit

Permalink
fix the import indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
sumn2u committed Apr 10, 2024
1 parent f75c2a7 commit 1f8e5f3
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion paper/paper.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,14 @@ String Comparisons offers a versatile solution for developers across a wide arra

import StringComparisons from 'string-comparisons';

const { JaroWrinker, Levenshtein, SmithWaterman, SorensenDice, Trigram } = StringComparisons;
const {
JaroWrinker,
Levenshtein,
SmithWaterman,
SorensenDice,
Trigram
} = StringComparisons;


const strings = ['programming', 'programmer'];
const sets = [new Set([1, 2, 3]), new Set([2, 3, 4])];
Expand Down

0 comments on commit 1f8e5f3

Please sign in to comment.