From b4df9acd6f92e2ed2839059d6a08efd027406cae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20=C5=A0mol=C3=ADk?= Date: Sun, 11 Feb 2024 08:05:10 +0100 Subject: [PATCH] Fix examples in the spec While implementing a plugin for Kysely framework, I notied some copy-paste and formatting issues in spec examples. --- src/content/spec/_index.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/content/spec/_index.md b/src/content/spec/_index.md index c004cefa..fd11f163 100644 --- a/src/content/spec/_index.md +++ b/src/content/spec/_index.md @@ -148,8 +148,8 @@ Thus given for example the following key value pairs key value pair|serialized_key|serialized_value|Final ---|---|---|--- `route=/polls 1000`|`route`|`'%2Fpolls%201000'`|`route='%2Fpolls%201000'` -`name='DROP TABLE FOO'`|`route`|`'%2Fpolls%201000'`|`route='%2Fpolls%201000'` -`name''="DROP TABLE USERS'"`|name=\'\'|DROP%20TABLE%20USERS\'|name=\'\'='DROP%20TABLE%20USERS\'' +`name='DROP TABLE FOO'`|`name`|`'DROP%20TABLE%20FOO'`|`name='DROP%20TABLE%20FOO'` +`name''="DROP TABLE USERS'"`|`name=''`|`'DROP%20TABLE%20USERS\''`|`name='DROP%20TABLE%20USERS\''` ### Sorting @@ -287,10 +287,10 @@ Running [sql_commenter](#sql-commenter) on an ORM integration that extracts the ```python sql_commenter('SELECT * FROM FOO', [ - tracestate='congo%3Dt61rcWkgMzE%2Crojo%3D00f067aa0ba902b7', + tracestate='congo=t61rcWkgMzE,rojo=00f067aa0ba902b7', traceparent='00-5bd66ef5095369c7b0d1f8f4bd33716a-c532cb4098ac3dd2-01', framework='spring', - action='%2Fparam*d', + action='/param*d', controller='index', ]) ```