Skip to content

Commit a539df7

Browse files
authored
Merge branch 'main' into fix-bind-controllers-before-custom-connectedcallback-behavior
2 parents 5bcf32f + 456196e commit a539df7

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

docs/Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ GEM
4949
sassc (> 2.0.1, < 3.0)
5050
jekyll-watch (2.2.1)
5151
listen (~> 3.0)
52-
kramdown (2.3.0)
52+
kramdown (2.3.1)
5353
rexml
5454
kramdown-parser-gfm (1.1.0)
5555
kramdown (~> 2.0)

docs/_guide/decorators.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ chapter: 4
33
subtitle: Using TypeScript for ergonomics
44
---
55

6-
Decorators are used heavily in Catalyst, because they provide really clean ergonomics and makes using the library a lot easier. Decorators are a special, (currently) non standard, feature of TypeScript. You'll need to turn the `experimentalDecorators` option on inside of your TypeScript project to use them.
6+
Decorators are used heavily in Catalyst, because they provide really clean ergonomics and makes using the library a lot easier. Decorators are a special, (currently) non standard, feature of TypeScript. You'll need to turn the `experimentalDecorators` option on inside of your TypeScript project to use them (if you're using `@babel/plugin-proposal-decorators` plugin, you need to use [`legacy` option](https://babeljs.io/docs/en/babel-plugin-proposal-decorators#legacy)).
77

88
You can read more about [decorators in the TypeScript handbook](https://www.typescriptlang.org/docs/handbook/decorators.html), but here's quick guide:
99

0 commit comments

Comments
 (0)