From 91e23ca85af8133fb3a4a9bb2a49fdc04f59dc4c Mon Sep 17 00:00:00 2001 From: Nadeeshan96 Date: Wed, 28 Jun 2023 11:31:39 +0530 Subject: [PATCH] Fix minor typo --- examples/object-type-inclusion/object_type_inclusion.bal | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/object-type-inclusion/object_type_inclusion.bal b/examples/object-type-inclusion/object_type_inclusion.bal index 57bbcd6ff0..0aefa6e92d 100644 --- a/examples/object-type-inclusion/object_type_inclusion.bal +++ b/examples/object-type-inclusion/object_type_inclusion.bal @@ -18,7 +18,7 @@ type Person object { class Engineer { // The `Engineer` class includes the `Person` object type. - // Therefore, it has to implement both the `clone()` and `draw()` methods. + // Therefore, it has to implement both the `clone()` and `getName()` methods. *Person; function init(string name) {