docs(count_factorial_steps): fix given prototype in subject

This commit is contained in:
Michele Sessa 2023-05-16 10:36:30 +01:00 committed by Michele
parent c120b69619
commit 7883e5da87
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ Create a **function** named `count_factorial_steps` that receives a factorial nu
If the argument is not a factorial, or it is equal 0 or 1, then the function should return 0.
```rust
fn count_factorial_steps(factorial: u64) -> u64 {
pub fn count_factorial_steps(factorial: u64) -> u64 {
}
```