Skip to content

Commit 0334ec3

Browse files
committed
replace double quotes with single quotes in index.js
1 parent ec5ec92 commit 0334ec3

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

packages/components/docs/API.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1057,7 +1057,7 @@ Renders a usage example snippet for a generated WebSocket client in a given lang
10571057
| Name | Type | Description |
10581058
|------|------|-------------|
10591059
| props | <code>Object</code> | Component props |
1060-
| props.clientName | <code>string</code> | The Exported name of the client. |
1060+
| props.clientName | <code>string</code> | The exported name of the client. |
10611061
| props.clientFileName | <code>string</code> | The file name where the client is defined. |
10621062
| props.language | <code>Language</code> | The target language for which to render the usage snippet |
10631063

packages/components/src/components/readme/Usage.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ main();
3838
* Renders a usage example snippet for a generated WebSocket client in a given language.
3939
*
4040
* @param {Object} props - Component props
41-
* @param {string} props.clientName - The Exported name of the client.
42-
* @param {string} props.clientFileName - The file name where the client is defined.
41+
* @param {string} props.clientName - The exported name of the client.
42+
* @param {string} props.clientFileName - The file name where the client is defined.
4343
* @param {Language} props.language - The target language for which to render the usage snippet
4444
* @returns {JSX.Element} A Text component containing a formatted usage example snippet.
4545
*

packages/components/src/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ export { Installation } from './components/readme/Installation';
1818
export { Usage } from './components/readme/Usage';
1919
export { Overview } from './components/readme/Overview';
2020
export { Readme } from './components/readme/Readme';
21-
export { AvailableOperations } from "./components/readme/AvailableOperations";
22-
export { OperationHeader } from "./components/readme/OperationHeader";
23-
export { MessageExamples } from "./components/readme/MessageExamples";
21+
export { AvailableOperations } from './components/readme/AvailableOperations';
22+
export { OperationHeader } from './components/readme/OperationHeader';
23+
export { MessageExamples } from './components/readme/MessageExamples';

0 commit comments

Comments
 (0)