Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove semi-colon for Syntax in the doc #252

Merged
merged 1 commit into from
Mar 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/edge/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ Returns the version of the client-side Edge extension.

**Syntax**
```typescript
extensionVersion(): Promise<string>;
extensionVersion(): Promise<string>
```

**Example**
Expand Down Expand Up @@ -149,7 +149,7 @@ See [MobileCore.resetIdentities](../core/README.md#resetidentities) for more det

**Syntax**
```typescript
sendEvent(experienceEvent: ExperienceEvent): Promise<Array<EdgeEventHandle>>;
sendEvent(experienceEvent: ExperienceEvent): Promise<Array<EdgeEventHandle>>
```

**Example**
Expand Down
12 changes: 6 additions & 6 deletions packages/edgeidentity/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ Returns the version of the Identity for Edge Network extension
**Syntax**

```typescript
extensionVersion(): Promise<string>;
extensionVersion(): Promise<string>
```
**Example**

Expand All @@ -124,7 +124,7 @@ A promise method which will be invoked once the Experience Cloud ID is available

**Syntax**
```typescript
getExperienceCloudId(): Promise<string>;
getExperienceCloudId(): Promise<string>
```

**Example**
Expand All @@ -138,7 +138,7 @@ A promise method which will be invoked once the identities are available or reje

**Syntax**
```typescript
getIdentities(): Promise<IdentityMap>;
getIdentities(): Promise<IdentityMap>
```
**Example**
```typescript
Expand All @@ -155,7 +155,7 @@ An example of an encoded string is as follows: "adobe_mc=TS%3DTIMESTAMP_VALUE%7C

**Syntax**
```typescript
getUrlVariables(): Promise<string>;
getUrlVariables(): Promise<string>
```

**Example**
Expand All @@ -175,7 +175,7 @@ Removing identities using a reserved namespace is not allowed using this API. Th

**Syntax**
```typescript
removeIdentity(item: IdentityItem, namespace: string);
removeIdentity(item: IdentityItem, namespace: string)
```
**Example**
```typescript
Expand Down Expand Up @@ -221,7 +221,7 @@ Updating identities using a reserved namespace is not allowed using this API. Th
**Syntax**

```typescript
updateIdentities(identityMap: IdentityMap);
updateIdentities(identityMap: IdentityMap)
```

**Example**
Expand Down