Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fix spelling in code comments #4236

Merged
merged 1 commit into from
Feb 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions bindings/c/include/opendal.h
Original file line number Diff line number Diff line change
Expand Up @@ -1223,7 +1223,7 @@ struct opendal_error *opendal_operator_create_dir(const struct opendal_operator
*
* assert(error == NULL);
*
* // now you can renmae!
* // now you can rename!
* opendal_error *error = opendal_operator_rename(op, "/testpath", "/testpath2");
*
* // Assert that this succeeds
Expand Down Expand Up @@ -1270,7 +1270,7 @@ struct opendal_error *opendal_operator_rename(const struct opendal_operator *op,
*
* assert(error == NULL);
*
* // now you can renmae!
* // now you can rename!
* opendal_error *error = opendal_operator_copy(op, "/testpath", "/testpath2");
*
* // Assert that this succeeds
Expand Down
4 changes: 2 additions & 2 deletions bindings/c/src/operator.rs
Original file line number Diff line number Diff line change
Expand Up @@ -702,7 +702,7 @@ pub unsafe extern "C" fn opendal_operator_create_dir(
///
/// assert(error == NULL);
///
/// // now you can renmae!
/// // now you can rename!
/// opendal_error *error = opendal_operator_rename(op, "/testpath", "/testpath2");
///
/// // Assert that this succeeds
Expand Down Expand Up @@ -765,7 +765,7 @@ pub unsafe extern "C" fn opendal_operator_rename(
///
/// assert(error == NULL);
///
/// // now you can renmae!
/// // now you can rename!
/// opendal_error *error = opendal_operator_copy(op, "/testpath", "/testpath2");
///
/// // Assert that this succeeds
Expand Down
Loading