aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Botcazou <ebotcazou@adacore.com>2021-04-10 19:17:54 +0200
committerPierre-Marie de Rodat <derodat@adacore.com>2021-06-29 14:23:46 +0000
commit568d3d4656c347012eb7dd2f008845505eab3ca8 (patch)
tree81c818f04c6d6274b63aea6ad2e7dc6efcb9896e
parent1a9d13fff60c845a258d1e6607d42290db45e5e7 (diff)
downloadgcc-568d3d4656c347012eb7dd2f008845505eab3ca8.zip
gcc-568d3d4656c347012eb7dd2f008845505eab3ca8.tar.gz
gcc-568d3d4656c347012eb7dd2f008845505eab3ca8.tar.bz2
[Ada] Fix old typo in comment
gcc/ada/ * repinfo-input.adb (Read_JSON_Stream): Fix typo.
-rw-r--r--gcc/ada/repinfo-input.adb2
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/ada/repinfo-input.adb b/gcc/ada/repinfo-input.adb
index 6463563..106c43c 100644
--- a/gcc/ada/repinfo-input.adb
+++ b/gcc/ada/repinfo-input.adb
@@ -215,7 +215,7 @@ package body Repinfo.Input is
J_COMMA,
J_COLON,
J_EOF);
- -- JSON Token kind. Note that in ECMA 404 there is no notion of integer.
+ -- JSON token kind. Note that in ECMA 404 there is no notion of integer.
-- Only numbers are supported. In our implementation we return J_INTEGER
-- if there is no decimal part in the number. The semantic is that this
-- is a J_NUMBER token that might be represented as an integer. Special