framework icon indicating copy to clipboard operation
framework copied to clipboard

Error in code examples in resource introduction of dojo.io

Open arndbeissner opened this issue 5 years ago • 0 comments

Bug

There are errors in the code examples in resources introduction on dojo.io. Since the resources are a very new addition and there is no widespread use in the public examples so far, these should be fixed, especially the one about the createDataMiddleware function. I just mention the second one as it's in the same document.

Package Version:

Current dojo.io for v.7 : https://dojo.io/learn/resources/introduction

Code

Expected behavior:

Code example for ResourceAwareWidget.tsx should read: const resource = createResourceMiddleware <ResourceData>();

Code example for App.tsx should read: const template = createMemoryResourceTemplate<{ foo: string }>();

Actual behavior:

Code example for ResourceAwareWidget.tsx reads: const resource = createDataMiddleware<ResourceData>();

Code example for App.tsx reads: const myTemplate = createMemoryResourceTemplate<{ foo: string }>();

arndbeissner avatar Sep 25 '20 10:09 arndbeissner