From 8672eba75432f021574de10e145adbf0bee5be66 Mon Sep 17 00:00:00 2001 From: Theodor Lundqvist <31588188+theolundqvist@users.noreply.github.com> Date: Sat, 21 Oct 2023 16:27:43 +0200 Subject: [PATCH 1/2] fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9ab5b10..9020799 100644 --- a/README.md +++ b/README.md @@ -166,7 +166,7 @@ user.data.increment("reactions." + reactionType) ## Cloud Functions -We can also declare typed cloud functoins in the following way. +We can also declare typed cloud functions in the following way. ```ts import { Cloud } from "parse-sdk-ts"; From aef27dc822c52f61c706bd6c00077c1f6a0bd2e9 Mon Sep 17 00:00:00 2001 From: Theodor Lundqvist <31588188+theolundqvist@users.noreply.github.com> Date: Sat, 21 Oct 2023 16:28:43 +0200 Subject: [PATCH 2/2] add clarification --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9020799..7e2c45f 100644 --- a/README.md +++ b/README.md @@ -80,7 +80,7 @@ export class Book extends DbModel { readonly authors = new _.Relation(User, this, Book.keys.authors); readonly description = new _.OptionalString(this, Book.keys.description); - constructor(data: Primitive.Object) { + constructor(data: Primitive.Object) { // Note argument type super(data, Book.keys); } }