From 10ab8738af0eeb3c0af651637a0045c5360730f2 Mon Sep 17 00:00:00 2001 From: Rachel Fenichel Date: Wed, 16 Aug 2023 16:30:58 -0700 Subject: [PATCH] chore: fix docs in FieldImage (#7403) --- core/field.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/core/field.ts b/core/field.ts index d562782d1..c539450d3 100644 --- a/core/field.ts +++ b/core/field.ts @@ -79,9 +79,7 @@ export abstract class Field * the prototype. * * Example: - * ```typescript - * FieldImage.prototype.DEFAULT_VALUE = null; - * ``` + * `FieldImage.prototype.DEFAULT_VALUE = null;` */ DEFAULT_VALUE: T | null = null;