Skip to content

Commit 1724b94

Browse files
committed
docs: clean up last few missing pieces of content
1 parent 1798221 commit 1724b94

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+1733
-1719
lines changed

CLAUDE.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -179,3 +179,8 @@ Data structures often include:
179179
## Optimizations
180180

181181
- Never build a new reqwest client from scratch. Use `rivet_pools::reqwest::client().await?` to access an existing reqwest client instance.
182+
183+
## Documentation
184+
185+
- When talking about "Rivet Actors" make sure to capitalize "Rivet Actor" as a proper noun and lowercase "actor" as a generic noun
186+

rivetkit-typescript/packages/rivetkit/src/actor/errors.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ export class DatabaseNotEnabled extends ActorError {
297297
}
298298
}
299299

300-
export class RequestHandlerNotDfeined extends ActorError {
300+
export class RequestHandlerNotDefined extends ActorError {
301301
constructor() {
302302
super(
303303
"handler",

rivetkit-typescript/packages/rivetkit/src/actor/instance/mod.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -674,7 +674,7 @@ export class ActorInstance<S, CP, CS, V, I, DB extends AnyDatabaseProvider> {
674674
this.assertReady();
675675

676676
if (!this.#config.onRequest) {
677-
throw new errors.RequestHandlerNotDfeined();
677+
throw new errors.RequestHandlerNotDefined();
678678
}
679679

680680
try {

website/public/docs.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
# Overview
22

3-
Rivet is a library for long-lived processes with durable state, realtime, and scalability. It is easily self-hostable and works with your infrastructure.
4-
5-
# Quickstart
6-
73
Get started with Rivet in minutes. Choose your preferred framework or runtime to begin building with actors.
84

95
Set up actors with Node.js, Bun, and web frameworks

0 commit comments

Comments
 (0)