From 493ea16ba493cbc3ff41a2247bf0c3e6839368c0 Mon Sep 17 00:00:00 2001 From: praneesha Date: Wed, 20 Sep 2023 06:12:19 +0530 Subject: [PATCH 1/3] Update the word `standard library` -> `Ballerina library` Update the word `standard library` -> `Ballerina library` --- examples/programs-and-modules/programs_and_modules.bal | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/programs-and-modules/programs_and_modules.bal b/examples/programs-and-modules/programs_and_modules.bal index f850ed60bd..d8c1d13036 100644 --- a/examples/programs-and-modules/programs_and_modules.bal +++ b/examples/programs-and-modules/programs_and_modules.bal @@ -1,6 +1,6 @@ // This import declaration binds the prefix `io` to the `ballerina/io` module. // The prefix by default comes form the last part of the module name. -// The `ballerina` org name is reserved for the standard library modules. +// The `ballerina` org name is reserved for the Ballerina library packages. import ballerina/io; // `main` function is the program entry point. From fb709c051b00711ee1c4dc58da9337439365faca Mon Sep 17 00:00:00 2001 From: praneesha Date: Wed, 20 Sep 2023 06:17:27 +0530 Subject: [PATCH 2/3] Update programs_and_modules.bal --- examples/programs-and-modules/programs_and_modules.bal | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/programs-and-modules/programs_and_modules.bal b/examples/programs-and-modules/programs_and_modules.bal index d8c1d13036..5f86ce70b8 100644 --- a/examples/programs-and-modules/programs_and_modules.bal +++ b/examples/programs-and-modules/programs_and_modules.bal @@ -1,6 +1,6 @@ // This import declaration binds the prefix `io` to the `ballerina/io` module. // The prefix by default comes form the last part of the module name. -// The `ballerina` org name is reserved for the Ballerina library packages. +// The `ballerina` org name is reserved for the Ballerina library modules. import ballerina/io; // `main` function is the program entry point. From 439702ce9da82e620e1ba124fa1adf76623c244e Mon Sep 17 00:00:00 2001 From: praneesha Date: Wed, 20 Sep 2023 06:19:51 +0530 Subject: [PATCH 3/3] Update programs_and_modules.bal --- examples/programs-and-modules/programs_and_modules.bal | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/programs-and-modules/programs_and_modules.bal b/examples/programs-and-modules/programs_and_modules.bal index 5f86ce70b8..2eb647f8b6 100644 --- a/examples/programs-and-modules/programs_and_modules.bal +++ b/examples/programs-and-modules/programs_and_modules.bal @@ -1,11 +1,11 @@ -// This import declaration binds the prefix `io` to the `ballerina/io` module. -// The prefix by default comes form the last part of the module name. -// The `ballerina` org name is reserved for the Ballerina library modules. +// This import declaration binds the prefix `io` to the `ballerina/io` package. +// The prefix by default comes from the last part of the package name. +// The `ballerina` org name is reserved for the Ballerina library packages. import ballerina/io; // `main` function is the program entry point. -// `public` makes function visible outside the module. +// `public` makes the function visible outside the package. public function main() { - // Here `io:println` means function `println` is in the module bound to prefix `io`. + // Here `io:println` means function `println` is in the package bound to prefix `io`. io:println("Hello, World!"); }