From 15bcc9c6ee0a3e04ef27bd0da960db3b33a10475 Mon Sep 17 00:00:00 2001 From: SeekingBlues <51911626+SeekingBlues@users.noreply.github.com> Date: Mon, 20 Jun 2022 19:24:31 +0800 Subject: [PATCH] Fix typo in Ada example (#3793) --- examples/ada/default.adb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/ada/default.adb b/examples/ada/default.adb index 4dc045407..587ca7879 100644 --- a/examples/ada/default.adb +++ b/examples/ada/default.adb @@ -13,5 +13,5 @@ end Square; -- (http://www.ada-auth.org/standards/12rm/html/RM-6-8.html) -- as a short hand for functions whose body consists of a -- single return statement. However they cannot be used as a --- complication unit. +-- compilation unit. -- function Square(num : Integer) return Integer is (num**2);