🛠 Issue: Add docstring with description, params, and return
📌 Description
Add docstring with description, params, and return on every function on :contracts\course\course_access\src\functions\save_profile.rs
Use the next template:
/// Brief description: explains what the function does.
///
/// # Arguments
///
/// * param1 - Explanation of the first parameter (If needed).
/// * param2 - Explanation of the second parameter (If needed).
///
/// # Returns
///
/// * Result<T, E> - What the function returns, with description of Ok and Err.
🛠 Issue: Add docstring with description, params, and return
📌 Description
Add docstring with description, params, and return on every function on :contracts\course\course_access\src\functions\save_profile.rs
Use the next template:
/// Brief description: explains what the function does.
///
/// # Arguments
///
/// *
param1- Explanation of the first parameter (If needed)./// *
param2- Explanation of the second parameter (If needed).///
/// # Returns
///
/// *
Result<T, E>- What the function returns, with description ofOkandErr.