diff --git a/CHANGELOG.md b/CHANGELOG.md index d835d2d..56a5e47 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -254,7 +254,7 @@ - Fixed using unique temporary files (by Михаил Страшун aka Dicebot) - [issue #482][issue482], [pull #497][issue497] - Fixed compiler command line issues on Windows with `--buildMode=singleFile` (by machindertech) - [pull #505][issue505] - Fixed a version range match error (">=A =" : c[0..idx]; c = c[idx..$]; switch(cmp) { - default: enforce(false, "No/Unknown comparision specified: '"~cmp~"'"); return ">="; + default: enforce(false, "No/Unknown comparison specified: '"~cmp~"'"); return ">="; case ">=": goto case; case ">": goto case; case "<=": goto case; case "<": goto case; case "==": return cmp; diff --git a/source/dub/internal/vibecompat/data/json.d b/source/dub/internal/vibecompat/data/json.d index c5bb7dd..0079bb9 100644 --- a/source/dub/internal/vibecompat/data/json.d +++ b/source/dub/internal/vibecompat/data/json.d @@ -856,7 +856,7 @@ The range is shrunk during parsing, leaving any remaining text that is not part of the JSON contents. - Throws a JSONException if any parsing error occured. + Throws a JSONException if any parsing error occurred. */ Json parseJson(R)(ref R range, int* line = null, string filename = null) if( is(R == string) )