Skip to content

Commit c8b3d1a

Browse files
author
Alexander Botteram
committed
Changed experimental features documentation back to __experimental
1 parent 3959fbe commit c8b3d1a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/coding-guidelines.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,13 +88,13 @@ import VisualEditor from '../visual-editor';
8888

8989
### Experimental APIs
9090

91-
Exposed APIs that are still being tested, discussed and are subject to change should be prefixed with `experimental__`, until they are finalized. This is meant to discourage developers from relying on the API, because it might be removed or changed in the (near) future.
91+
Exposed APIs that are still being tested, discussed and are subject to change should be prefixed with `__experimental`, until they are finalized. This is meant to discourage developers from relying on the API, because it might be removed or changed in the (near) future.
9292

9393
Example:
9494

9595
```js
9696
export {
97-
internalApi as experimental__exposedApi
97+
internalApi as __experimentalExposedApi
9898
} from './internalApi.js';
9999
```
100100

0 commit comments

Comments
 (0)