From 6e66c0d1ef9a98c03d8b7af6d5a641e7e49e593e Mon Sep 17 00:00:00 2001 From: Sandeep Hegde Date: Fri, 10 Nov 2017 20:22:12 -0500 Subject: [PATCH] Corrected typo in Readme --- python/servo/mutation/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/servo/mutation/README.md b/python/servo/mutation/README.md index bc9c5f2eea6..46dd3287605 100644 --- a/python/servo/mutation/README.md +++ b/python/servo/mutation/README.md @@ -5,7 +5,7 @@ The motivation for mutation testing is to test the breadth coverage of tests for For more info refer [Wiki page](https://en.wikipedia.org/wiki/Mutation_testing). -Here Mutation testing is used to test the coverage of WPT for Servo's browsing engine. +Here Mutation testing is used to test the coverage of WPT for Servo's browser engine. ### Mutation Strategy This version of mutation testing consists of a Python script that finds random uses of && in Servo's code base and replaces them by ||. The expectation from the WPT tests is to catch this mutation and result in failures when executed on the corresponding code base.