Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!--
Please follow the issue template below for bug reports and feature requests.
Also please indicate in the issue title which language/library is concerned. Eg: [JAVA] Bug generating foo with bar
Also please indicate in the issue title which language/library is concerned. E.g.: [JAVA] Bug generating foo with bar
-->

##### Description
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ assignees: ''

<!--
Please follow the issue template below for bug reports.
Also please indicate in the issue title which language/library is concerned. Eg: [BUG][JAVA] Bug generating foo with bar
Also please indicate in the issue title which language/library is concerned. E.g.: [BUG][JAVA] Bug generating foo with bar
-->

##### Description
Expand Down
4 changes: 2 additions & 2 deletions bin/utils/dart-keywords/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ Running `./save_dart_keywords.sh` from this directory will generate `dart-keywor

## When should the keywords be generated?

`save_dart_keywords.sh` should be run when a new version of Dart is release to update the keywords file.
`save_dart_keywords.sh` should be run when a new version of Dart is released to update the keywords file.

The last Dart version that was used to generate the keywords can be found in `dart-version.txt`.

## What does the shellscript do?
## What does the shell script do?

1. run the dart app
- `dart run save-dart-keywords.dart`
Expand Down
2 changes: 1 addition & 1 deletion docs/debugging.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ title: Debugging

## Generation

As a user there may be times when generated outputs don't match your expectations it's unclear why. The CLI supports a `--dry-run` option which may be used to inspect the anticipated file operations without making changes to the file system.
As a user there may be times when generated outputs don't match your expectations and it's unclear why. The CLI supports a `--dry-run` option which may be used to inspect the anticipated file operations without making changes to the file system.

Suppose you generate using the `--minimal-update` option, and you notice on subsequent generations of a client that no files have changed. This is by design.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,5 +65,5 @@ import {operationId} from './symlinkDir';
The CommonJS syntax is as follows:

```
import localName = require('./symlinkDir')';
import localName = require('./symlinkDir');
```
Loading