Skip to content

Commit 1135a49

Browse files
authored
[docs] fix gradle.properties template (flutter#7990)
Fixes a few typos in the `gradle.properties` template. ## Pre-launch Checklist - [x] I read the [Contributor Guide] and followed the process outlined there for submitting PRs. - [x] I read the [Tree Hygiene] wiki page, which explains my responsibilities. - [x] I read the [Flutter Style Guide] _recently_, and have followed its advice. - [x] I signed the [CLA]. - [x] I listed at least one issue that this PR fixes in the description above. - [x] I updated/added relevant documentation (doc comments with `///`). - [x] I added new tests to check the change I am making, or this PR is [test-exempt]. - [x] All existing and new tests are passing. If you need help, consider asking for advice on the #hackers-new channel on [Discord]. <!-- Links --> [Contributor Guide]: https://github.com/flutter/flutter/blob/master/docs/contributing/Tree-hygiene.md#overview [Tree Hygiene]: https://github.com/flutter/flutter/blob/master/docs/contributing/Tree-hygiene.md [test-exempt]: https://github.com/flutter/flutter/blob/master/docs/contributing/Tree-hygiene.md#tests [Flutter Style Guide]: https://github.com/flutter/flutter/blob/master/docs/contributing/Style-guide-for-Flutter-repo.md [CLA]: https://cla.developers.google.com/ [flutter/tests]: https://github.com/flutter/tests [breaking change policy]: https://github.com/flutter/flutter/blob/master/docs/contributing/Tree-hygiene.md#handling-breaking-changes [Discord]: https://github.com/flutter/flutter/blob/master/docs/contributing/Chat.md
1 parent b33b76c commit 1135a49

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ name and contact info to the [AUTHORS](AUTHORS) file.
116116
- In the root directory, create an empty `gradle.properties` file (`touch gradle.properties`)
117117
- Add the following to the file:
118118
```
119-
name = "flutter-intellij
119+
name = "flutter-intellij"
120120
buildSpec=2024.3
121121
flutterPluginVersion=1
122122
ideaProduct=android-studio
@@ -129,7 +129,7 @@ name and contact info to the [AUTHORS](AUTHORS) file.
129129
testing=true
130130
kotlin.stdlib.default.dependency=false
131131
org.gradle.parallel=true
132-
org.gradle.jvmargs=-Xms1024m -Xmx4048m`
132+
org.gradle.jvmargs=-Xms1024m -Xmx4048m
133133
```
134134
- **[Note]** If you want, you can manually change these properties to target different versions of IntelliJ. See `product-matrix.json` to find which configurations are supported.
135135

0 commit comments

Comments
 (0)