Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix spelling #45

Merged
merged 1 commit into from
Apr 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ features:
<a href="https://nodeinfo.diaspora.software/">NodeInfo</a> server
link: /manual/nodeinfo.md
- icon: 🤝
title: Interoparability
title: Interoperability
details: >-
Special touch for interoperability with Mastodon and few other popular
fediverse software
Expand Down
4 changes: 2 additions & 2 deletions docs/manual/access-control.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ federation
});
~~~~

The equivalet method is available for collections as well:
The equivalent method is available for collections as well:

~~~~ typescript{8-10}
import { federation } from "./your-federation.ts";
Expand All @@ -74,7 +74,7 @@ If the predicate returns `false`, the request is rejected with a
Fine-grained access control
---------------------------

You may not want to block everything from an unauthroized user, but only filter
You may not want to block everything from an unauthorized user, but only filter
some resources. For example, you may want to show some private posts to
a specific group of users. In such cases, you can use the
`RequestContext.getSignedKeyOwner()` method to get the actor who signed
Expand Down
2 changes: 1 addition & 1 deletion httpsig/mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ export async function doesActorOwnKey(
* @param keyId The ID of the key to check, or the key itself.
* @param documentLoader The document loader to use for fetching the key and its owner.
* @returns The actor that owns the key, or `null` if the key has no known owner.
* @sicne 0.7.0
* @since 0.7.0
*/
export async function getKeyOwner(
keyId: URL | CryptographicKey,
Expand Down
Loading