From 4c9a51990c4d9172a227a17b53987d178bb3b17d Mon Sep 17 00:00:00 2001 From: Chad Skeeters Date: Tue, 20 May 2025 16:35:47 -0500 Subject: [PATCH] Corrects spelling mistake in syntax-test for Typst --- tests/syntax-tests/highlighted/Typst/test.typ | 2 +- tests/syntax-tests/source/Typst/test.typ | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/syntax-tests/highlighted/Typst/test.typ b/tests/syntax-tests/highlighted/Typst/test.typ index c14a24fe..55ee54bd 100644 --- a/tests/syntax-tests/highlighted/Typst/test.typ +++ b/tests/syntax-tests/highlighted/Typst/test.typ @@ -23,6 +23,6 @@ ) ```python -dev foo(): +def foo():  print("hi") ``` diff --git a/tests/syntax-tests/source/Typst/test.typ b/tests/syntax-tests/source/Typst/test.typ index 395258f7..d27b3aa4 100644 --- a/tests/syntax-tests/source/Typst/test.typ +++ b/tests/syntax-tests/source/Typst/test.typ @@ -23,6 +23,6 @@ ) ```python -dev foo(): +def foo(): print("hi") ```