about summary refs log tree commit diff stats
path: root/awk/rawk/tests/simple_stdlib_test.rawk
diff options
context:
space:
mode:
Diffstat (limited to 'awk/rawk/tests/simple_stdlib_test.rawk')
-rw-r--r--awk/rawk/tests/simple_stdlib_test.rawk2
1 files changed, 1 insertions, 1 deletions
diff --git a/awk/rawk/tests/simple_stdlib_test.rawk b/awk/rawk/tests/simple_stdlib_test.rawk
index 7245342..0a726df 100644
--- a/awk/rawk/tests/simple_stdlib_test.rawk
+++ b/awk/rawk/tests/simple_stdlib_test.rawk
@@ -14,7 +14,7 @@ RAWK {
     expect_true(is_string("hello"), "hello should be a string");
     expect_false(is_number("abc"), "abc should not be a number");
     
-    # Test our custom function
+    # Test the custom function
     expect_true(test_function(5), "5 should pass our test");
     expect_false(test_function(-3), "-3 should fail our test");
     expect_false(test_function("text"), "text should fail our test");