Open
Description
Description
When we add an example for an api for readability purposes we keep empty lines.
table<Employee> key(id) employees = table [
{name: "Jo", salary: 1200, id: 2121},
{name: "Emma", salary: 800, id: 2122},
{name: "John", salary: 1500, id: 2123}
];
Employee[] employeeArray = employees.toArray();
type Employee record {|
readonly int id;
string name;
decimal salary;
|};
Above code snippet should have two empty lines for toArray()
api doc in table langlib. But when we generate the docs it is not visible.
Steps to Reproduce
# Returns a list of all the members of a table.
#
# ```ballerina
# table<Employee> key(id) employees = table [
# {name: "Jo", salary: 1200, id: 2121},
# {name: "Emma", salary: 800, id: 2122},
# {name: "John", salary: 1500, id: 2123}
# ];
#
# Employee[] employeeArray = employees.toArray();
#
# type Employee record {|
# readonly int id;
# string name;
# decimal salary;
# |};
# ```
#
# + t - the table
# + return - an array whose members are the members of parameter `t`
Replace the above snippet with the existing documentation in toArray()
api in the table
langlib. Run below two commands.
cd langlib/lang.table/src/main/ballerina/
bal doc
Affected Version(s)
2201.3.0
Metadata
Metadata
Assignees
Type
Projects
Status
PR Sent