Fix a typo.
authorMartin Liska <mliska@suse.cz>
Mon, 17 Feb 2020 12:20:06 +0000 (13:20 +0100)
committerMartin Liska <mliska@suse.cz>
Mon, 17 Feb 2020 12:20:06 +0000 (13:20 +0100)
PR other/93756
* config/rx/elf.opt: Fix typo.
PR other/93756
* src/std/algorithm/iteration.d: Fix typo.

gcc/ChangeLog
gcc/config/rx/elf.opt
libphobos/ChangeLog
libphobos/src/std/algorithm/iteration.d

index 7c481407de95e4d032328c24fa8655e6b70303b8..a402736d0068e5c081a81a809f87150abeaaf671 100644 (file)
@@ -1,3 +1,8 @@
+2020-02-17  Martin Liska  <mliska@suse.cz>
+
+       PR other/93756
+       * config/rx/elf.opt: Fix typo.
+
 2020-02-17  Richard Biener  <rguenther@suse.de>
 
        PR c/86134
index d65c1ee94c4651031ee9cc26290bbfdb0fd5e727..f130e7996803ee3edf0aa1554e7fc2207685798c 100644 (file)
@@ -29,7 +29,7 @@ Use the simulator runtime.
 
 mas100-syntax
 Target Mask(AS100_SYNTAX) Report
-Generate assembler output that is compatible with the Renesas AS100 assembler.  This may restrict some of the compiler's capabilities.  The default is to generate GAS compatable syntax.
+Generate assembler output that is compatible with the Renesas AS100 assembler.  This may restrict some of the compiler's capabilities.  The default is to generate GAS compatible syntax.
 
 ;---------------------------------------------------
 
index 285dfa515b639a4bfd2413a5a06410bf9bf56f21..ace6a2fec92be359ac7a320acb233dec2b891f51 100644 (file)
@@ -1,3 +1,8 @@
+2020-02-17  Martin Liska  <mliska@suse.cz>
+
+       PR other/93756
+       * src/std/algorithm/iteration.d: Fix typo.
+
 2020-01-24  Maciej W. Rozycki  <macro@wdc.com>
 
        * m4/druntime.m4: Handle `--with-toolexeclibdir='.
index 7e5782406d1e62b66e63552cca1e23de33c5ac47..93cf1e7cfb3203cd3cfc1ef453580a35c6480920 100644 (file)
@@ -3151,7 +3151,7 @@ The number of seeds must be correspondingly increased.
     static assert(!is(typeof(reduce!(min, max)(tuple(c), "hello"))));
     //"Seed (dchar, dchar, dchar) does not have the correct amount of fields (should be 2)"
     static assert(!is(typeof(reduce!(min, max)(tuple(c, c, c), "hello"))));
-    //"Incompatable function/seed/element: all(alias pred = "a")/int/dchar"
+    //"Incompatible function/seed/element: all(alias pred = "a")/int/dchar"
     static assert(!is(typeof(reduce!all(1, "hello"))));
     static assert(!is(typeof(reduce!(all, all)(tuple(1, 1), "hello"))));
 }