diff --git a/docs/errors/E0714.md b/docs/errors/E0714.md index 4240e7f7ac..a63a9679c3 100644 --- a/docs/errors/E0714.md +++ b/docs/errors/E0714.md @@ -51,14 +51,11 @@ class C { } async getValueAsync() { - // Perform asynchronous operations here - return await asyncFuctnion(); + return await fetch(this._value); } async setValueAsync(newValue) { - // Perform asynchronous operations here - await asyncFuctnion(); - this._value = newValue; + this._value = await fetch(newValue); } } ``` \ No newline at end of file