@@ -184,7 +184,7 @@ describe('normalize()', () => {
184184 } ) ;
185185 } ) ;
186186
187- describe ( 'dont mutate and skip non-enumerables' , ( ) => {
187+ describe ( "doesn't mutate the given object and skips non-enumerables" , ( ) => {
188188 test ( 'simple object' , ( ) => {
189189 const circular = {
190190 foo : 1 ,
@@ -311,7 +311,7 @@ describe('normalize()', () => {
311311 } ) ;
312312 } ) ;
313313
314- describe ( 'changes unserializeable/global values/classes to its string representation ' , ( ) => {
314+ describe ( 'changes unserializeable/global values/classes to their respective string representations ' , ( ) => {
315315 test ( 'primitive values' , ( ) => {
316316 expect ( normalize ( undefined ) ) . toEqual ( '[undefined]' ) ;
317317 expect ( normalize ( NaN ) ) . toEqual ( '[NaN]' ) ;
@@ -376,7 +376,7 @@ describe('normalize()', () => {
376376 } ) ;
377377 } ) ;
378378
379- test ( ' known Classes like Reacts SyntheticEvents' , ( ) => {
379+ test ( " known classes like React's `SyntheticEvent`" , ( ) => {
380380 const obj = {
381381 foo : {
382382 nativeEvent : 'wat' ,
@@ -510,7 +510,7 @@ describe('normalize()', () => {
510510 } ) ;
511511 } ) ;
512512
513- test ( ' normalizes value on every iteration of decycle and takes care of things like Reacts SyntheticEvents' , ( ) => {
513+ test ( " normalizes value on every iteration of decycle and takes care of things like React's `SyntheticEvent`" , ( ) => {
514514 const obj = {
515515 foo : {
516516 nativeEvent : 'wat' ,
0 commit comments