docs(circle): improve functions prototypes consistency

This commit is contained in:
mikysett 2022-10-10 16:51:51 +01:00 committed by Michele
parent ad42d04a89
commit 187028562b
1 changed files with 10 additions and 18 deletions

View File

@ -23,31 +23,23 @@ Create the structures `Circle` and `Point`. You'll need to create the necessary
This snippets are incomplete, you'll need to complete them. You'll find some useful information in the [usage](#usage). This snippets are incomplete, you'll need to complete them. You'll find some useful information in the [usage](#usage).
```rust ```rust
#[derive(Debug)]
pub struct Circle { pub struct Circle {
center //.. pub center //..
radius //.. pub radius //..
} }
struct Point { impl Circle {
// ... // ...
} }
// Point #[derive(Debug)]
fn distance(p1, p2) -> _ { pub struct Point {
// ...
} }
// Circle impl Point {
fn new(x: f64, y: f64, radius: f64) -> Circle { // ...
}
fn diameter(_) -> _ {
}
fn area() -> _ {
}
fn intersect(self, other: ) -> bool {
} }
``` ```