From b13c1cc09237127046fd5e2731f338940555a98b Mon Sep 17 00:00:00 2001 From: Zami Date: Mon, 28 Apr 2025 15:41:32 +0000 Subject: [PATCH] Fix docs typo (#143) --- 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.