From e24d9320b84006a9b70f4600eac440f7de2a2f39 Mon Sep 17 00:00:00 2001 From: kibirisu Date: Mon, 28 Apr 2025 17:06:46 +0200 Subject: [PATCH] Fix docs typo --- docs/07_fetching_data.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/07_fetching_data.md b/docs/07_fetching_data.md index ef19a6a..832f906 100644 --- a/docs/07_fetching_data.md +++ b/docs/07_fetching_data.md @@ -39,4 +39,4 @@ let user: DbUser = webfinger_resolve_actor("ruud@lemmy.world", &data).await?; # }).unwrap(); ``` -Note that webfinger queries don't contain a leading `@`. It is possible tha there are multiple Activitypub IDs returned for a single webfinger query in case of multiple actors with the same name (for example Lemmy permits group and person with the same name). In this case `webfinger_resolve_actor` automatically loops and returns the first item which can be dereferenced successfully to the given type. \ No newline at end of file +Note that webfinger queries don't contain a leading `@`. It is possible that there are multiple Activitypub IDs returned for a single webfinger query in case of multiple actors with the same name (for example Lemmy permits group and person with the same name). In this case `webfinger_resolve_actor` automatically loops and returns the first item which can be dereferenced successfully to the given type.