From a5060609cc4ac35c028e9de93b178fff54cb0f59 Mon Sep 17 00:00:00 2001 From: Gary Shen Date: Tue, 26 Oct 2021 07:58:15 +0800 Subject: [PATCH] Fix a typo in shims/README.md Signed-off-by: Gary Shen --- shims/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shims/README.md b/shims/README.md index 08d3aa1ed61..165809d8692 100644 --- a/shims/README.md +++ b/shims/README.md @@ -26,7 +26,7 @@ In the following we provide recipes for typical scenarios addressed by the Shim It's among the easiest issues to resolve. We define a method in SparkShims trait covering a superset of parameters from all versions and call it ``` -ShimLoader.gerSparkShims.methodWithDiscrepancies(p_1, ..., p_n) +ShimLoader.getSparkShims.methodWithDiscrepancies(p_1, ..., p_n) ``` instead of referencing it directly. Shim implementations are in charge of dispatching it further to correct version-dependent methods. Moreover, unlike in the below sections