From 3b878a1deeb4f016cba29ae6008953e3b43d9e8d Mon Sep 17 00:00:00 2001 From: Alexandr Ovsyannikov Date: Sun, 29 Oct 2023 02:04:04 +0400 Subject: [PATCH] Change passive voice to active voice for reader's convenience. --- fastkml/atom.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/fastkml/atom.py b/fastkml/atom.py index a07be3b1..8a58d17d 100644 --- a/fastkml/atom.py +++ b/fastkml/atom.py @@ -59,9 +59,8 @@ def check_email(email: str) -> bool: class Link(_XMLObject): """ - Identifies a related Web page. The type of relation is defined by - the rel attribute. A feed is limited to one alternate per type and - hreflang. + Identifies a related Web page. The rel attribute defines the type of relation. + A feed is limited to one alternate per type and hreflang. is patterned after html's link element. It has one required attribute, href, and five optional attributes: rel, type, hreflang, title, and length.