summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJulian Fondren <julian.fondren@gmail.com>2019-08-16 14:10:39 -0500
committerJulian Fondren <julian.fondren@gmail.com>2019-08-16 14:10:39 -0500
commited63ebcd618561d56554ef208cca1067511e40c1 (patch)
tree6756d4e8019e0049d7fbb1253abacb0235070fcf
parentd03bbc18206904d8fc7f06a5243925b379a3b5ac (diff)
use Prolog syntax highlighting for Mercury code
-rw-r--r--mercury.html.markdown4
1 files changed, 2 insertions, 2 deletions
diff --git a/mercury.html.markdown b/mercury.html.markdown
index 76c7d1ca..f749bac4 100644
--- a/mercury.html.markdown
+++ b/mercury.html.markdown
@@ -7,7 +7,7 @@ contributors:
Mercury is a strict, pure functional/logic programming language, with
influences from Prolog, ML, and Haskell.
-```mercury
+```prolog
% Percent sign starts a one-line comment.
% foo(Bar, Baz)
@@ -97,7 +97,7 @@ voter(P) :-
Complete runnable example. File in 'types.m'; compile with 'mmc --make types'.
-```mercury
+```prolog
:- module types.
:- interface.
:- import_module io. % required for io.io types in...