From e157a16af3f81c83cd81bdba570ea6391da16832 Mon Sep 17 00:00:00 2001 From: Martin HART Date: Tue, 3 Nov 2020 15:11:50 +0100 Subject: [PATCH] fix documentation --- src/robot.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/robot.rs b/src/robot.rs index c81452e..932fa85 100644 --- a/src/robot.rs +++ b/src/robot.rs @@ -1,10 +1,10 @@ -/// A Robot *aka droid* is represented here. -/// Each robot must have a unique id. use rand::{ distributions::{Distribution, Standard}, Rng, }; +/// A Robot *aka droid* is represented here. +/// Each robot must have a unique id. pub struct Robot { pub id: u32, pub o: Orientation,