From 389793a23eab295a2ab72b4c0fba7b97156a6306 Mon Sep 17 00:00:00 2001 From: Joe Heffer Date: Mon, 5 Aug 2024 12:35:35 +0100 Subject: [PATCH] Try to fix syntax highlighting bug --- episodes/readable.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/episodes/readable.md b/episodes/readable.md index 03637a4..3492cc5 100644 --- a/episodes/readable.md +++ b/episodes/readable.md @@ -79,8 +79,8 @@ def count_word_occurrences(filename, word_to_count): Without syntax highlighting: -```output -# Function to count word occurrences in a text file +```default +#' Function to count word occurrences in a text file count_word_occurrences <- function(filename, word_to_count) { text_file <- file(filename, "r") word_count <- 0