@@ -651,7 +651,7 @@ test_cs_err!(move_to_with_too_many_coords, &[
651
651
UInt8 ( operator:: ENDCHAR ) ,
652
652
] , CFFError :: InvalidArgumentsStackLength ) ;
653
653
654
- test_cs_err ! ( move_to_with_not_enought_coords , & [
654
+ test_cs_err ! ( move_to_with_not_enough_coords , & [
655
655
CFFInt ( 10 ) , UInt8 ( operator:: MOVE_TO ) ,
656
656
UInt8 ( operator:: ENDCHAR ) ,
657
657
] , CFFError :: InvalidArgumentsStackLength ) ;
@@ -661,7 +661,7 @@ test_cs_err!(hmove_to_with_too_many_coords, &[
661
661
UInt8 ( operator:: ENDCHAR ) ,
662
662
] , CFFError :: InvalidArgumentsStackLength ) ;
663
663
664
- test_cs_err ! ( hmove_to_with_not_enought_coords , & [
664
+ test_cs_err ! ( hmove_to_with_not_enough_coords , & [
665
665
UInt8 ( operator:: HORIZONTAL_MOVE_TO ) ,
666
666
UInt8 ( operator:: ENDCHAR ) ,
667
667
] , CFFError :: InvalidArgumentsStackLength ) ;
@@ -671,7 +671,7 @@ test_cs_err!(vmove_to_with_too_many_coords, &[
671
671
UInt8 ( operator:: ENDCHAR ) ,
672
672
] , CFFError :: InvalidArgumentsStackLength ) ;
673
673
674
- test_cs_err ! ( vmove_to_with_not_enought_coords , & [
674
+ test_cs_err ! ( vmove_to_with_not_enough_coords , & [
675
675
UInt8 ( operator:: VERTICAL_MOVE_TO ) ,
676
676
UInt8 ( operator:: ENDCHAR ) ,
677
677
] , CFFError :: InvalidArgumentsStackLength ) ;
@@ -713,7 +713,7 @@ test_cs_err!(curve_to_with_invalid_num_of_coords_2, &[
713
713
UInt8 ( operator:: ENDCHAR ) ,
714
714
] , CFFError :: InvalidArgumentsStackLength ) ;
715
715
716
- test_cs_err ! ( hh_curve_to_with_not_enought_coords , & [
716
+ test_cs_err ! ( hh_curve_to_with_not_enough_coords , & [
717
717
CFFInt ( 10 ) , CFFInt ( 20 ) , UInt8 ( operator:: MOVE_TO ) ,
718
718
CFFInt ( 30 ) , CFFInt ( 40 ) , CFFInt ( 50 ) , UInt8 ( operator:: HH_CURVE_TO ) ,
719
719
UInt8 ( operator:: ENDCHAR ) ,
@@ -726,7 +726,7 @@ test_cs_err!(hh_curve_to_with_too_many_coords, &[
726
726
UInt8 ( operator:: ENDCHAR ) ,
727
727
] , CFFError :: InvalidArgumentsStackLength ) ;
728
728
729
- test_cs_err ! ( vv_curve_to_with_not_enought_coords , & [
729
+ test_cs_err ! ( vv_curve_to_with_not_enough_coords , & [
730
730
CFFInt ( 10 ) , CFFInt ( 20 ) , UInt8 ( operator:: MOVE_TO ) ,
731
731
CFFInt ( 30 ) , CFFInt ( 40 ) , CFFInt ( 50 ) , UInt8 ( operator:: VV_CURVE_TO ) ,
732
732
UInt8 ( operator:: ENDCHAR ) ,
0 commit comments