@@ -102,7 +102,7 @@ tape('simple save and retrive', function (tester) {
102102 } )
103103 } )
104104
105- tape ( 'testing Extentions and branches' , function ( tester ) {
105+ tape ( 'testing extensions and branches' , function ( tester ) {
106106 const it = tester . test
107107 const trie = new CheckpointTrie ( )
108108
@@ -111,7 +111,7 @@ tape('simple save and retrive', function (tester) {
111111 t . end ( )
112112 } )
113113
114- it ( 'should create extention to store this value' , async function ( t ) {
114+ it ( 'should create extension to store this value' , async function ( t ) {
115115 await trie . put ( Buffer . from ( 'do' ) , Buffer . from ( 'verb' ) )
116116 t . equal (
117117 'f803dfcb7e8f1afd45e88eedb4699a7138d6c07b71243d9ae9bff720c99925f9' ,
@@ -120,7 +120,7 @@ tape('simple save and retrive', function (tester) {
120120 t . end ( )
121121 } )
122122
123- it ( 'should store this value under the extention ' , async function ( t ) {
123+ it ( 'should store this value under the extension ' , async function ( t ) {
124124 await trie . put ( Buffer . from ( 'done' ) , Buffer . from ( 'finished' ) )
125125 t . equal (
126126 '409cff4d820b394ed3fb1cd4497bdd19ffa68d30ae34157337a7043c94a3e8cb' ,
@@ -130,11 +130,11 @@ tape('simple save and retrive', function (tester) {
130130 } )
131131 } )
132132
133- tape ( 'testing Extentions and branches - reverse' , function ( tester ) {
133+ tape ( 'testing extensions and branches - reverse' , function ( tester ) {
134134 const it = tester . test
135135 const trie = new CheckpointTrie ( )
136136
137- it ( 'should create extention to store this value' , async function ( t ) {
137+ it ( 'should create extension to store this value' , async function ( t ) {
138138 await trie . put ( Buffer . from ( 'do' ) , Buffer . from ( 'verb' ) )
139139 t . end ( )
140140 } )
@@ -144,7 +144,7 @@ tape('simple save and retrive', function (tester) {
144144 t . end ( )
145145 } )
146146
147- it ( 'should store this value under the extention ' , async function ( t ) {
147+ it ( 'should store this value under the extension ' , async function ( t ) {
148148 await trie . put ( Buffer . from ( 'done' ) , Buffer . from ( 'finished' ) )
149149 t . equal (
150150 '409cff4d820b394ed3fb1cd4497bdd19ffa68d30ae34157337a7043c94a3e8cb' ,
@@ -155,7 +155,7 @@ tape('simple save and retrive', function (tester) {
155155 } )
156156} )
157157
158- tape ( 'testing deletions cases' , function ( tester ) {
158+ tape ( 'testing deletion cases' , function ( tester ) {
159159 const it = tester . test
160160 const trie = new CheckpointTrie ( )
161161
@@ -170,7 +170,7 @@ tape('testing deletions cases', function (tester) {
170170 t . end ( )
171171 } )
172172
173- it ( 'should delete from a branch->branch-extention ' , async function ( t ) {
173+ it ( 'should delete from a branch->branch-extension ' , async function ( t ) {
174174 await trie . put ( Buffer . from ( [ 11 , 11 , 11 ] ) , Buffer . from ( 'first' ) )
175175 await trie . put ( Buffer . from ( [ 12 , 22 , 22 ] ) , Buffer . from ( 'create the first branch' ) )
176176 await trie . put ( Buffer . from ( [ 12 , 33 , 33 ] ) , Buffer . from ( 'create the middle branch' ) )
@@ -182,7 +182,7 @@ tape('testing deletions cases', function (tester) {
182182 t . end ( )
183183 } )
184184
185- it ( 'should delete from a extention ->branch-extention ' , async function ( t ) {
185+ it ( 'should delete from a extension ->branch-extension ' , async function ( t ) {
186186 await trie . put ( Buffer . from ( [ 11 , 11 , 11 ] ) , Buffer . from ( 'first' ) )
187187 await trie . put ( Buffer . from ( [ 12 , 22 , 22 ] ) , Buffer . from ( 'create the first branch' ) )
188188 await trie . put ( Buffer . from ( [ 12 , 33 , 33 ] ) , Buffer . from ( 'create the middle branch' ) )
@@ -195,7 +195,7 @@ tape('testing deletions cases', function (tester) {
195195 t . end ( )
196196 } )
197197
198- it ( 'should delete from a extention ->branch-branch' , async function ( t ) {
198+ it ( 'should delete from a extension ->branch-branch' , async function ( t ) {
199199 await trie . put ( Buffer . from ( [ 11 , 11 , 11 ] ) , Buffer . from ( 'first' ) )
200200 await trie . put ( Buffer . from ( [ 12 , 22 , 22 ] ) , Buffer . from ( 'create the first branch' ) )
201201 await trie . put ( Buffer . from ( [ 12 , 33 , 33 ] ) , Buffer . from ( 'create the middle branch' ) )
0 commit comments