fix: typo in comment description
This commit is contained in:
parent
fa44613e14
commit
1dd3a9ee4f
1 changed files with 3 additions and 2 deletions
|
@ -15,12 +15,13 @@
|
||||||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
//! Comments associated to an issue or a pull/merge request within the repository of a forge
|
//! Comments associated to an issue or a pull/merge request within the repository of a forge
|
||||||
//! (Gitea, GitLab, etc.).",
|
//! (Gitea, GitLab, etc.)
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
|
|
||||||
use crate::Reaction;
|
use crate::Reaction;
|
||||||
|
|
||||||
/// Comments associated to an issue or a pull/merge request within the repository of a forge (Gitea, GitLab, etc.).",
|
/// Comments associated to an issue or a pull/merge request within the repository of a forge
|
||||||
|
/// (Gitea, GitLab, etc.)
|
||||||
#[derive(Clone, Debug, Serialize, Deserialize, Default, Eq, PartialEq)]
|
#[derive(Clone, Debug, Serialize, Deserialize, Default, Eq, PartialEq)]
|
||||||
pub struct Comment {
|
pub struct Comment {
|
||||||
/// Unique identifier of the issue or pull/merge request containing the comment
|
/// Unique identifier of the issue or pull/merge request containing the comment
|
||||||
|
|
Loading…
Reference in a new issue