Skip to content

Commit a94429e

Browse files
committed
Fixed small deprecated link
1 parent ef28713 commit a94429e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/9/en/part9b.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -788,7 +788,7 @@ We can also explicitly type things <i>any</i>. The only difference between impli
788788
Programmers however see the code differently when <i>any</i> is explicitly enforced than when it is implicitly inferred.
789789
Implicit <i>any</i> typings are usually considered problematic, since it is quite often due to the coder forgetting to assign types (or being too lazy to do it), and it also means that the full power of TypeScript is not properly exploited.
790790
791-
This is why the configuration rule [noImplicitAny](https://www.typescriptlang.org/v2/en/tsconfig#noImplicitAny) exists on compiler level, and it is highly recommended to keep it on at all times.
791+
This is why the configuration rule [noImplicitAny](https://www.typescriptlang.org/tsconfig#noImplicitAny) exists on compiler level, and it is highly recommended to keep it on at all times.
792792
In the rare occasions when you truly cannot know what the type of a variable is, you should explicitly state that in the code:
793793
794794
```js

0 commit comments

Comments
 (0)