Skip to content

Commit

Permalink
Improve dashboard and readme copy (#19876)
Browse files Browse the repository at this point in the history
  • Loading branch information
filiptronicek authored Jun 11, 2024
1 parent 9edcd1a commit 8c7805c
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@

- **Browser**
- Using Gitpod dashboard [gitpod.io/new](https://gitpod.io/new).
- Add `gitpod.io/# `as a prefix to any of your GitHub/ GitLab/ BitBucket repository, like [this](https://gitpod.io/#https://github.com/gitpod-io/template-typescript-react)
- Add `gitpod.io/# `as a prefix to any of your GitHub/ GitLab/ Bitbucket repository, like [this](https://gitpod.io/#https://github.com/gitpod-io/template-typescript-react)
- **CLI**: You can also [install Gitpod CLI](https://www.gitpod.io/docs/references/gitpod-cli#installation) and create your first workspace directly from your terminal :)


Expand Down
2 changes: 1 addition & 1 deletion components/dashboard/src/teams/TeamAuthentication.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ const PrivateSourceControlAccess = () => {
<ConfigurationSettingsField className="bg-pk-surface-secondary">
<Heading3>Private source control access</Heading3>
<Subheading className="mt-1">
Connect to your private source control like GitHub, BitBucket and GitLab
Connect to your private source control like GitHub, Bitbucket and GitLab
</Subheading>

<LinkButton
Expand Down
2 changes: 1 addition & 1 deletion components/dashboard/src/teams/TeamPolicies.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ const WorkspaceClassesEnterpriseCallout = () => {
<PillLabel type="warn">Enterprise</PillLabel>
</Heading3>
<Subheading>
Access to more powerful workspace classes with up to 30 cores 54GB of RAM and 100GB storage
Access to more powerful workspace classes with up to 30 cores 54GB of RAM and 100GB of storage
</Subheading>

<div className="mt-6 flex flex-row space-x-2">
Expand Down
4 changes: 2 additions & 2 deletions components/server/src/bitbucket/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# BitBucket Integration tests
# Bitbucket Integration tests

To run the BitBucket integration tests via `npm test` the `GITPOD_TEST_TOKEN_BITBUCKET` environment variable needs to be defined:
To run the Bitbucket integration tests via `npm test` the `GITPOD_TEST_TOKEN_BITBUCKET` environment variable needs to be defined:

```bash
export GITPOD_TEST_TOKEN_BITBUCKET='{ "username": "$username", "value": "$applicationPassword", "scopes": [] }'
Expand Down
2 changes: 1 addition & 1 deletion components/server/src/github/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ export class GitHubRestApi {
}

protected get userAgent() {
return (this.config.oauth && new URL(this.config.oauth?.callBackUrl)?.hostname) || "GitPod unknown";
return (this.config.oauth && new URL(this.config.oauth?.callBackUrl)?.hostname) || "Gitpod unknown";
}

/**
Expand Down
2 changes: 1 addition & 1 deletion components/server/src/user/token-service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export class TokenService implements TokenProvider {
*
* The default lifetime of a token if not specified otherwise.
* Atm we only specify a different lifetime on workspace starts (for the token we pass to "git clone" during content init).
* Also, this value is relevant for "opportunistic token refreshes" (enabled for BitBucket only atm): It's the time we mark a token as "reserved" (= do not opportunistically refresh it).
* Also, this value is relevant for "opportunistic token refreshes" (enabled for Bitbucket only atm): It's the time we mark a token as "reserved" (= do not opportunistically refresh it).
*/
static readonly DEFAULT_LIFETIME = 5;

Expand Down

0 comments on commit 8c7805c

Please sign in to comment.