From 4f44a8d5f24a40ea5739a48e41b37802560a8e35 Mon Sep 17 00:00:00 2001 From: Louis Vallat Date: Tue, 28 Jun 2022 22:47:23 +0200 Subject: [PATCH] fix: Added documentation for the modules Signed-off-by: Louis Vallat --- Cargo.toml | 2 +- src/devices.rs | 2 +- src/status.rs | 2 +- src/wan.rs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 32a935c..5050276 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "livebox" -version = "0.9.0" +version = "0.9.1" edition = "2021" description = "A library to gather data from Livebox 4 & 5." license = "GPL-3.0" diff --git a/src/devices.rs b/src/devices.rs index 071f702..ede0f6c 100644 --- a/src/devices.rs +++ b/src/devices.rs @@ -1,5 +1,5 @@ -///! All the necessary struct elements to store the router devices information. +//! All the necessary struct elements to store the router devices information. use serde::Deserialize; diff --git a/src/status.rs b/src/status.rs index ba4cd23..7d5a9c8 100644 --- a/src/status.rs +++ b/src/status.rs @@ -1,5 +1,5 @@ -///! All the necessary struct elements to store the router status. +//! All the necessary struct elements to store the router status. use serde::Deserialize; diff --git a/src/wan.rs b/src/wan.rs index a745c1c..ee1e620 100644 --- a/src/wan.rs +++ b/src/wan.rs @@ -1,5 +1,5 @@ -///! The WAN configuration that you can read from the router. +//! The WAN configuration that you can read from the router. use serde::Deserialize;