Fix common misspellings and typos

Change-Id: I8152acaccd33a4b646d56cba0748aeefa0c16b35
diff --git a/include/osmocom/rspro/INTEGER.h b/include/osmocom/rspro/INTEGER.h
index e8b36c7..c8edf12 100644
--- a/include/osmocom/rspro/INTEGER.h
+++ b/include/osmocom/rspro/INTEGER.h
@@ -68,8 +68,8 @@
     ASN_STRTOL_ERROR_RANGE = -3,  /* Input outside of numeric range for long type */
     ASN_STRTOL_ERROR_INVAL = -2,  /* Invalid data encountered (e.g., "+-") */
     ASN_STRTOL_EXPECT_MORE = -1,  /* More data expected (e.g. "+") */
-    ASN_STRTOL_OK          =  0,  /* Conversion succeded, number ends at (*end) */
-    ASN_STRTOL_EXTRA_DATA  =  1,  /* Conversion succeded, but the string has extra stuff */
+    ASN_STRTOL_OK          =  0,  /* Conversion succeeded, number ends at (*end) */
+    ASN_STRTOL_EXTRA_DATA  =  1,  /* Conversion succeeded, but the string has extra stuff */
 };
 enum asn_strtol_result_e asn_strtol_lim(const char *str, const char **end, long *l);