Skip to content

Commit 0e218a1

Browse files
authored
Docs: “can not” ▶︎ “cannot” (#883)
Can not ➡️ cannot
1 parent 627ac11 commit 0e218a1

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

frontend/docs/about-slow-types.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ Constants should have explicit type annotations:
139139
### Global augmentation
140140

141141
Module augmentation and global augmentation must not be used. This means that
142-
packages can not use `declare global` to introduce new global variables, or
142+
packages cannot use `declare global` to introduce new global variables, or
143143
`declare module` to augment other modules.
144144

145145
Here are some examples of unsupported code:
@@ -343,7 +343,7 @@ are:
343343

344344
## Ignoring slow types
345345

346-
Due to their nature of affecting _if_ JSR can understand the code, you can not
346+
Due to their nature of affecting _if_ JSR can understand the code, you cannot
347347
selectively ignore individual diagnostics for slow types. Slow type diagnostics
348348
can only be ignored for the entire package. Doing this results in incomplete
349349
documentation and type declarations for the package, and slower type checking
@@ -367,7 +367,7 @@ adding the following to your `deno.json` configuration file:
367367
}
368368
```
369369
370-
Note that because slow type diagnostics can not be individually ignored, one can
370+
Note that because slow type diagnostics cannot be individually ignored, one can
371371
not use an ignore comment like `// deno-lint-ignore no-slow-types` to ignore
372372
slow type diagnostics.
373373

frontend/docs/faq.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ foreseeable future - JSR is designed to be very cheap to run.
5959

6060
## Can I delete a package from JSR?
6161

62-
Source code published to JSR can not be deleted.
62+
Source code published to JSR cannot be deleted.
6363
[Learn more about immutability.](/docs/immutability)
6464

6565
You can "yank" a version of a package, which will hide the version from the
@@ -118,7 +118,7 @@ true.** JSR can act on your behalf only to read any resources you have granted
118118
it access to (your email addresses and public profile information). It cannot
119119
perform arbitrary actions on your behalf.
120120

121-
JSR can not modify your GitHub account, create repositories, create comments, or
121+
JSR cannot modify your GitHub account, create repositories, create comments, or
122122
do anything else that would be considered "acting on your behalf". GitHub
123123
presents this "Act on your behalf" screen to all GitHub Apps, regardless of what
124124
permissions they actually request.

frontend/docs/npm-compatibility.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,15 +52,15 @@ import { camelCase } from "@luca/cases";
5252
The JSR npm compatibility layer is not a perfect replacement for native JSR
5353
support. There are some limitations:
5454

55-
- You can not use `jsr:` specifiers to import JSR packages.
55+
- You cannot use `jsr:` specifiers to import JSR packages.
5656
- Unlike with native JSR imports, you are not directly importing TypeScript
5757
code. Instead JSR transpiles the TypeScript code to JavaScript before it is
5858
installed into your `node_modules` directory. This generally means that your
5959
editor experience will suffer, because "Go to definition" and other features
6060
will link to transpiled JavaScript code, or to generated `.d.ts` files.
6161
- Install times will generally be slower than with native JSR support, because
6262
npm will download files even if they are not used in your project.
63-
- You can not publish JSR packages using the npm compatibility layer, using
63+
- You cannot publish JSR packages using the npm compatibility layer, using
6464
`npm publish`. You can only publish JSR packages using `jsr publish` or
6565
`deno publish`.
6666

frontend/docs/packages.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ A package can be deleted from the "Settings" tab on the package page. Only scope
8686
admins can delete a package.
8787

8888
Packages can only be deleted if they have no published versions. If a package
89-
has published versions, it can not be deleted.
89+
has published versions, it cannot be deleted.
9090
[Learn more about registry immutability.](/docs/immutability)
9191

9292
When you have a package that you no longer want to maintain, we recommend
@@ -118,7 +118,7 @@ file before running `jsr publish` or `deno publish`.
118118

119119
### Yanking versions
120120

121-
Package versions can not be deleted. However, sometimes you may want to prevent
121+
Package versions cannot be deleted. However, sometimes you may want to prevent
122122
users from using a specific version of your package, for example because it
123123
contains a critical bug. In this case you can "yank" the version.
124124

frontend/docs/private-registries.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ the Azure DevOps Artifacts feed.
7575

7676
### Configuring a JSR upstream with Google Artifact Registry
7777

78-
JSR can not yet be used as an upstream for Google Artifact Registry due to a
78+
JSR cannot yet be used as an upstream for Google Artifact Registry due to a
7979
differing layout of package tarball URLs between JSR and the layout that is
8080
expected by Google Artifact Registry.
8181

@@ -84,7 +84,7 @@ Aligning JSRs package tarball URLs with the NPM upstream is being tracked in
8484

8585
### Configuring a JSR upstream with JFrog Artifactory
8686

87-
JSR can not yet be used as an upstream for JFrog Artifactory due to a differing
87+
JSR cannot yet be used as an upstream for JFrog Artifactory due to a differing
8888
layout of package tarball URLs between JSR and the layout that is expected by
8989
JFrog Artifactory.
9090

frontend/docs/scopes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ can also see all pending invitations on their
6060
Admins can change the role of other members. To change the role of a member,
6161
head to the "Members" tab of your scope, click the dropdown next to the member
6262
you want to change the role of, and select the new role. The new role will take
63-
effect immediately. Note that you can not demote the last admin of a scope to a
63+
effect immediately. Note that you cannot demote the last admin of a scope to a
6464
member. If you want to demote the last admin of a scope to a member, you must
6565
first promote another member to an admin. A scope must always have at least one
6666
admin.

0 commit comments

Comments
 (0)