diff --git a/bindings/c/include/opendal.h b/bindings/c/include/opendal.h index 22e0aabe5b5..850d8c6523b 100644 --- a/bindings/c/include/opendal.h +++ b/bindings/c/include/opendal.h @@ -180,7 +180,7 @@ typedef const struct Metadata *opendal_metadata; /* The result type for [`opendal_operator_stat()`], the meta contains the metadata of the path, the code represents whether the stat operation is successful. Note - that the operation could be successfull even if the path does not exist. + that the operation could be successful even if the path does not exist. */ typedef struct opendal_result_stat { opendal_metadata meta; diff --git a/bindings/c/src/result.rs b/bindings/c/src/result.rs index c96be0e6a35..36591c30c5e 100644 --- a/bindings/c/src/result.rs +++ b/bindings/c/src/result.rs @@ -44,7 +44,7 @@ pub struct opendal_result_is_exist { /// The result type for [`opendal_operator_stat()`], the meta contains the metadata /// of the path, the code represents whether the stat operation is successful. Note -/// that the operation could be successfull even if the path does not exist. +/// that the operation could be successful even if the path does not exist. #[repr(C)] pub struct opendal_result_stat { pub meta: opendal_metadata,