From 90a236eefd509f6ed1ffb48b7bbb32c395d3b940 Mon Sep 17 00:00:00 2001 From: Kent Yao Date: Wed, 4 Sep 2024 16:36:35 +0900 Subject: [PATCH] [MINOR][DOCS] Fix site.SPARK_VERSION pattern in RDD Programming Guide ### What changes were proposed in this pull request? Fix site.SPARK_VERSION pattern in RDD Programming Guide. I found this when I was developing #47968 ### Why are the changes needed? doc fix ### Does this PR introduce _any_ user-facing change? no ### How was this patch tested? doc build ### Was this patch authored or co-authored using generative AI tooling? no Closes #47985 from yaooqinn/version. Authored-by: Kent Yao Signed-off-by: Hyukjin Kwon --- docs/rdd-programming-guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/rdd-programming-guide.md b/docs/rdd-programming-guide.md index cbbce4c082060..a1adcc2f6eb03 100644 --- a/docs/rdd-programming-guide.md +++ b/docs/rdd-programming-guide.md @@ -46,7 +46,7 @@ Spark applications in Python can either be run with the `bin/spark-submit` scrip {% highlight python %} install_requires=[ - 'pyspark=={site.SPARK_VERSION}' + 'pyspark=={{site.SPARK_VERSION}}' ] {% endhighlight %}