You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -33,7 +33,7 @@ Installs all `dependencies` of all the codegens. This runs the command `npm inst
33
33
The script associated with `npm test` will run all tests that ensures that your commit does not break anything in the
34
34
repository. Additional requirements to run these tests have been listed down in [ADDITIONAL_DEPENDENCIES](/ADDITIONAL_DEPENDENCIES.md)
35
35
36
-
*`npm test`: Runs strucutre, unit, newman and system tests for all codegens
36
+
*`npm test`: Runs structure, unit, newman and system tests for all codegens
37
37
*`npm run test <codegen-name>`: Runs tests for a particular codegen.
38
38
39
39
@@ -86,7 +86,7 @@ One of the following two contributions are possible for postman-code-generators:
86
86
- All pull requests should be to the develop branch.
87
87
- Every pull request should have associated issue(s) on our [issue tracker](https://github.com/postmanlabs/postman-code-generators/issues).
88
88
- For any non-trivial fixes, regression tests should be added as well. For a bug, we also recommend adding a request to the `testCollection.json` found inside `test/codegen/newman/fixtures` to run the request using common newman tests.
89
-
- For a new language to be added as a part of postman-code-generators, we will need some level of community support before we are able to accept the pull request. Feel free to add links to any sort of report/statistics from trusted sources that might help us understand the relavance and popularity of this language among users.
89
+
- For a new language to be added as a part of postman-code-generators, we will need some level of community support before we are able to accept the pull request. Feel free to add links to any sort of report/statistics from trusted sources that might help us understand the relevance and popularity of this language among users.
Copy file name to clipboardexpand all lines: codegens/java-okhttp/README.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -61,7 +61,7 @@ console.log(options);
61
61
```
62
62
63
63
### Guideline for using generated snippet
64
-
* Generated snippet requires dependecies[okhttp3](https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp/3.9.1) and [okio](https://mvnrepository.com/artifact/com.squareup.okio/okio/1.13.0) to compile and run
64
+
* Generated snippet requires dependencies[okhttp3](https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp/3.9.1) and [okio](https://mvnrepository.com/artifact/com.squareup.okio/okio/1.13.0) to compile and run
65
65
66
66
* Generated snippet uses `.method(nameOfMethod, body)` from `Request` class to form HTTP request. If the `method` doesn't require body then the value of `body` will be `null`.
0 commit comments