summaryrefslogtreecommitdiff
path: root/src/clarktown/matchers
diff options
context:
space:
mode:
Diffstat (limited to 'src/clarktown/matchers')
-rw-r--r--src/clarktown/matchers/fenced_code_block.clj (renamed from src/clarktown/matchers/code_block.clj)4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/clarktown/matchers/code_block.clj b/src/clarktown/matchers/fenced_code_block.clj
index 655c951..9bbcdca 100644
--- a/src/clarktown/matchers/code_block.clj
+++ b/src/clarktown/matchers/fenced_code_block.clj
@@ -1,4 +1,4 @@
-(ns clarktown.matchers.code-block
+(ns clarktown.matchers.fenced-code-block
(:require
[clojure.string :as string]))
@@ -7,4 +7,4 @@
"Determines whether we're dealing with a code block."
[block]
(and (string/starts-with? block "```")
- (string/ends-with? block "```"))) \ No newline at end of file
+ (string/ends-with? block "```")))