From 8586d3107260ab75d0d29a96d6296cd70c2b0200 Mon Sep 17 00:00:00 2001 From: Colm O'Connor Date: Sun, 7 Jan 2024 05:39:30 +0000 Subject: [PATCH] DOCS : Updated stringly typed link. --- docs/src/why-not/gherkin.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/why-not/gherkin.md b/docs/src/why-not/gherkin.md index 2ac56e6..960df2d 100644 --- a/docs/src/why-not/gherkin.md +++ b/docs/src/why-not/gherkin.md @@ -149,7 +149,7 @@ Type safety is a critical feature of programming languages. While type systems c At the other end of the spectrum is "stringly typed" code - the weakest of type systems, where everything is a string. Bash and Makefiles are both stringly typed and while it can be ok for short, simple scripts, it will make debugging painful when these scripts grow very large. -Gherkin is [stringly typed](https://www.techopedia.com/definition/31876/stringly-typed). Steps are parsed (often with regexes) and strings are pulled out and fed into step code. +Gherkin is [stringly typed](https://www.hanselman.com/blog/stringly-typed-vs-strongly-typed). Steps are parsed (often with regexes) and strings are pulled out and fed into step code. HitchStory, on the other hand, is based upon StrictYAML and bakes in schema based parsing.