From 452763556cd01e52940a40040919b77419b9c6fc Mon Sep 17 00:00:00 2001 From: rbasso Date: Fri, 10 Mar 2017 11:42:10 +0900 Subject: [PATCH] custom-set: Fix description to match property name Change single test group description that doesn't match the 'property' name 'intersection'. Considering what is being discussed in exercism/x-common#673, about semantic versioning the test data, this implies a bump in the MINOR version: > Anything else that do not change the meaning of the tests > should bump the PATCH version: > > - Regrouping/"Renesting" test cases without changing test cases ordering. > - Changing descriptions or comments. > - Changing keys' ordering or formatting. --- exercises/custom-set/canonical-data.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/custom-set/canonical-data.json b/exercises/custom-set/canonical-data.json index 92ef0a840a..96b0a2e6e8 100644 --- a/exercises/custom-set/canonical-data.json +++ b/exercises/custom-set/canonical-data.json @@ -1,6 +1,6 @@ { "exercise": "custom-set", - "version": "1.0.0", + "version": "1.0.1", "comments": [ "These tests cover the core components of a set data structure: checking", "presence, adding, comparing and basic set operations. Other features", @@ -209,7 +209,7 @@ ] }, { - "description": "Intersect returns a set of all shared elements", + "description": "Intersection returns a set of all shared elements", "cases": [ { "description": "intersection of two empty sets is an empty set",