Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Ballerina By Examples to include references to the binary data BBE links #5632

Merged
merged 5 commits into from
Sep 19, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ Run the service as follows.
## Related links
- [`getByteStream()` - API documentation](https://lib.ballerina.io/ballerina/http/latest#Request#getByteStream)
- [`http` module - Specification](/spec/http/#41-service-configuration)
- [Binary Data](/learn/by-example/binary-data/)
SasinduDilshara marked this conversation as resolved.
Show resolved Hide resolved
5 changes: 4 additions & 1 deletion examples/io-bytes/io_bytes.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,7 @@ For more information on the underlying module, see the [`io` module](https://lib

To run this sample, use the `bal run` command.

::: out io_bytes.out :::
::: out io_bytes.out :::

## Related links
- [Binary Data](/learn/by-example/binary-data/)
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ List binding patterns can be used in a match statement to bind parts of successf
- [List binding pattern](/learn/by-example/list-binding-pattern/)
- [Rest binding pattern in list binding pattern](/learn/by-example/rest-binding-pattern-in-list-binding-pattern/)
- [Binding patterns](/learn/by-example/binding-patterns/)
- [Match statement](/learn/by-example/match-statement/)
- [Match statement](/learn/by-example/match-statement/)
- [List sub typing](/learn/by-example/list-subtyping)
3 changes: 2 additions & 1 deletion examples/list-binding-pattern/list_binding_pattern.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,5 @@ A list binding pattern binds members of a list to variables. It can contain more
- [Rest binding pattern in list binding pattern](/learn/by-example/rest-binding-pattern-in-list-binding-pattern/)
- [Binding patterns](/learn/by-example/binding-patterns/)
- [Arrays](/learn/by-example/arrays/)
- [Tuples](/learn/by-example/tuples/)
- [Tuples](/learn/by-example/tuples/)
- [List sub typing](/learn/by-example/list-subtyping)
2 changes: 0 additions & 2 deletions examples/list-equality/list_equality.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,3 @@ You can use `==` and `!=` on lists to check the deep equality of two lists: two
- [Tuples](/learn/by-example/tuples)
- [Arrays](/learn/by-example/arrays)
- [List sub typing](/learn/by-example/list-subtyping)

[comment]: # (Add equality expression link)
SasinduDilshara marked this conversation as resolved.
Show resolved Hide resolved
1 change: 1 addition & 0 deletions examples/tcp-client/tcp_client.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@ Run the client program by executing the command below.
## Related links
- [`tcp:Client` client object - API documentation](https://lib.ballerina.io/ballerina/tcp/latest#Client)
- [TCP Client - Specification](/spec/tcp/#4-client)
- [Binary Data](/learn/by-example/binary-data/)
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,6 @@ For more information on the underlying module, see the [`data.yaml` module](http
::: code yaml_to_anydata_with_projection.bal :::

::: out yaml_to_anydata_with_projection.out :::

## Related links
- [Binary Data](/learn/by-example/binary-data/)
SasinduDilshara marked this conversation as resolved.
Show resolved Hide resolved
Loading