From bbcc3dc07de3ecd949021dd641f9c3915a0e0b0c Mon Sep 17 00:00:00 2001 From: Luke Vo Date: Mon, 23 Oct 2023 15:53:08 -0500 Subject: [PATCH] corrected buffer value description in code doc --- progress/internal/linear-progress.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/progress/internal/linear-progress.ts b/progress/internal/linear-progress.ts index 4d5814a94..2ef54677a 100644 --- a/progress/internal/linear-progress.ts +++ b/progress/internal/linear-progress.ts @@ -15,7 +15,7 @@ import {Progress} from './progress.js'; */ export class LinearProgress extends Progress { /** - * Buffer amount to display, a fraction between 0 and 1. + * Buffer amount to display, a fraction between 0 and max. */ @property({type: Number}) buffer = 1;