jid: fix incorrect type on Jid::Full

Jonas Schäfer created

This does not matter much because users need to replace usages of these
anyway, but it's better to have it right here to not cause additional
confusion.

Change summary

jid/src/lib.rs | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

jid/src/lib.rs 🔗

@@ -410,7 +410,7 @@ impl Jid {
         since = "0.11.0",
         note = "use Jid::from (for construction of Jid values) or Jid::try_into_full/Jid::try_as_full (for match blocks) instead"
     )]
-    pub fn Full(other: BareJid) -> Self {
+    pub fn Full(other: FullJid) -> Self {
         Self::from(other)
     }
 }