Skip to content

Commit

Permalink
remove leading $ (#211)
Browse files Browse the repository at this point in the history
  • Loading branch information
LauraLangdon authored Apr 18, 2023
1 parent 1a47739 commit 6d23308
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions website/docs/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ SE2 provides client libraries for Go and Node.js. Start by installing the client
In your terminal issue the following command to grab the library.

```sh
$ go get github.com/suborbital/se2-go@latest
go get github.com/suborbital/se2-go@latest
```

</TabItem>
Expand Down Expand Up @@ -167,7 +167,7 @@ await suborbital.admin.createTenant({ tenant });
<TabItem value = "tenant-curl" label = "Using cURL">

```bash
$ curl --request POST \
curl --request POST \
--url https://api.suborbital.network/environment/v1/tenant/newTenantName \
--header 'Authorization: Bearer <api token here>' \
--header 'Content-Type: application/json' \
Expand Down Expand Up @@ -226,7 +226,7 @@ const token = await suborbital.admin.createSession(params);
<TabItem value = "curl" label = "Using cURL">

```bash
$ curl --request POST \
curl --request POST \
--url https://api.suborbital.network/environment/v1/tenant/newTenantName/session \
--header 'Authorization: Bearer <api token here>' \
--header 'Content-Type: application/json' \
Expand Down Expand Up @@ -331,7 +331,7 @@ console.log(result.result); // hello, my friend!
<TabItem value = "curl" label = "Using cURL">

```bash
$ curl --location 'https://edge.suborbital.network/name/<tenantName>/<namespace>/<pluginName>' \
curl --location 'https://edge.suborbital.network/name/<tenantName>/<namespace>/<pluginName>' \
--header 'Authorization: Bearer <api token here>' \
--header 'Content-Type: text/plain' \
--data 'my friend!'
Expand Down

1 comment on commit 6d23308

@vercel
Copy link

@vercel vercel bot commented on 6d23308 Apr 18, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.