@@ -194,7 +194,7 @@ If you implement a `Precondition` that is not in the specification, make sure
194194` If-Match ` header field precondition.
195195
196196``` ts
197- import { IfMatch } from " https://deno.land/x/conditional_request_middleware@$VERSION/mod .ts" ;
197+ import { IfMatch } from " https://deno.land/x/conditional_request_middleware@$VERSION/preconditions/if_match .ts" ;
198198import { assertEquals } from " https://deno.land/std/testing/asserts.ts" ;
199199
200200const precondition = new IfMatch ();
@@ -234,7 +234,7 @@ If evaluation is `false`:
234234` If-None-Match ` header field precondition.
235235
236236``` ts
237- import { IfNoneMatch } from " https://deno.land/x/conditional_request_middleware@$VERSION/mod .ts" ;
237+ import { IfNoneMatch } from " https://deno.land/x/conditional_request_middleware@$VERSION/preconditions/if_none_match .ts" ;
238238import { assertEquals } from " https://deno.land/std/testing/asserts.ts" ;
239239
240240const precondition = new IfNoneMatch ();
@@ -275,7 +275,7 @@ If evaluation is `false`:
275275` If-Modified-Since ` header field precondition.
276276
277277``` ts
278- import { IfModifiedSince } from " https://deno.land/x/conditional_request_middleware@$VERSION/mod .ts" ;
278+ import { IfModifiedSince } from " https://deno.land/x/conditional_request_middleware@$VERSION/preconditions/if_modified_since .ts" ;
279279import { assertEquals } from " https://deno.land/std/testing/asserts.ts" ;
280280
281281const precondition = new IfModifiedSince ();
@@ -318,7 +318,7 @@ If evaluation is `false`:
318318` If-Unmodified-Since ` header field precondition.
319319
320320``` ts
321- import { IfUnmodifiedSince } from " https://deno.land/x/conditional_request_middleware@$VERSION/mod .ts" ;
321+ import { IfUnmodifiedSince } from " https://deno.land/x/conditional_request_middleware@$VERSION/preconditions/if_unmodified_since .ts" ;
322322import { assertEquals } from " https://deno.land/std/testing/asserts.ts" ;
323323
324324const precondition = new IfUnmodifiedSince ();
@@ -358,7 +358,7 @@ If evaluation is `false`:
358358` If-Range ` header field precondition.
359359
360360``` ts
361- import { IfRange } from " https://deno.land/x/conditional_request_middleware@$VERSION/mod .ts" ;
361+ import { IfRange } from " https://deno.land/x/conditional_request_middleware@$VERSION/preconditions/if_range .ts" ;
362362import { assertEquals } from " https://deno.land/std/testing/asserts.ts" ;
363363
364364const precondition = new IfRange ();
0 commit comments