Skip to content

Commit

Permalink
Merge pull request #41445 from ballerina-platform/praneesha-patch-1
Browse files Browse the repository at this point in the history
Update `ballerina-library` word in lang repo
  • Loading branch information
praneesha authored Oct 3, 2023
2 parents 9e82176 + 9d6977f commit 84645da
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ You can use one of the following options to try out Ballerina.
* [Set up Ballerina](https://ballerina.io/learn/get-started/)
* [Ballerina Playground](https://play.ballerina.io/)

You can use following resources to learn Ballerina.
You can use the following resources to learn Ballerina.

* [Ballerina by Example](https://ballerina.io/learn/by-example/)
* [Ballerina learn pages and guides](https://ballerina.io/learn/)
Expand All @@ -62,14 +62,14 @@ Try out Ballerina's development capabilities using the [Ballerina extension for

>**Tip:** If you are unsure whether you have found a bug, search the existing issues in the GitHub repo and raise it in the [Ballerina Discord](https://discord.com/invite/wAJYFbMrG2) or [Stack Overflow](https://stackoverflow.com/questions/tagged/ballerina).
- Language, Tooling, Standard Library, Website: <a href="https://github.com/ballerina-platform/ballerina-lang/issues">ballerina-lang</a> repo
- Language, Tooling, Ballerina library, Website: <a href="https://github.com/ballerina-platform/ballerina-lang/issues">ballerina-lang</a> repo
- Extended library: <a href="https://github.com/ballerina-platform/ballerina-extended-library/issues">ballerina-extended-library</a> repo
- Security flaw: send an email to [email protected]. For details, see the <a href="https://ballerina.io/security/">security policy</a>.


## Contribute to Ballerina

As an open source project, Ballerina welcomes contributions from the community. To start contributing, read these [contribution guidelines](https://github.com/ballerina-platform/ballerina-lang/blob/master/CONTRIBUTING.md) for information on how you should go about contributing to our project.
As an open-source project, Ballerina welcomes contributions from the community. To start contributing, read these [contribution guidelines](https://github.com/ballerina-platform/ballerina-lang/blob/master/CONTRIBUTING.md) for information on how you should go about contributing to our project.

We look forward to receiving your contributions.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ public static void mergeApiDocs(Path apiDocsRoot) {
centralLib.modules.sort((o1, o2) -> o1.id.compareToIgnoreCase(o2.id));
writeAPIDocs(moduleLib, apiDocsRoot, true, false);

// Create the central standard library index json
// Create the central Ballerina library index JSON.
String stdIndexJson = gson.toJson(centralLib);
File stdIndexJsonFile = apiDocsRoot.resolve(CENTRAL_STDLIB_INDEX_JSON).toFile();
try (java.io.Writer writer = new OutputStreamWriter(new FileOutputStream(stdIndexJsonFile),
Expand All @@ -171,7 +171,7 @@ public static void mergeApiDocs(Path apiDocsRoot) {
log.error("Failed to create {} file.", CENTRAL_STDLIB_INDEX_JSON, e);
}

// Create the central standard library search json
// Create the central Ballerina library search JSON.
String stdSearchJson = gson.toJson(genSearchJson(moduleLib));
File stdSearchJsonFile = apiDocsRoot.resolve(CENTRAL_STDLIB_SEARCH_JSON).toFile();
try (java.io.Writer writer = new OutputStreamWriter(new FileOutputStream(stdSearchJsonFile),
Expand Down
2 changes: 1 addition & 1 deletion misc/docerina/src/main/resources/release-description.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
The following is a list of language and standard library modules that are available with the distribution.
The following is a list of Ballerina library packages that are available with the distribution.

0 comments on commit 84645da

Please sign in to comment.