Skip to content

Commit c27d4be

Browse files
authored
Merge pull request #2375 from bbambozzi/typescriptlinkfix
Fixed small deprecated link in part9b
2 parents ef28713 + a94429e commit c27d4be

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)