Skip to content

Commit 9b99788

Browse files
committed
chore: add deno doc badge
1 parent 2919a44 commit 9b99788

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# deno_sqs
22

3+
[![deno doc](https://doc.deno.land/badge.svg)](https://doc.deno.land/https/deno.land/x/sqs/mod.ts)
4+
35
Amazon SQS for Deno
46

57
> ⚠️ This project is work in progress. Expect breaking changes.

src/error.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
export class SQSError extends Error {
2-
name = "SQSError";
2+
name: "SQSError" = "SQSError";
33
constructor(message: string, public response: string) {
44
super(message);
55
}

0 commit comments

Comments
 (0)