Skip to content

Commit

Permalink
Merge pull request #252 from cacheung/syntax
Browse files Browse the repository at this point in the history
Remove semi-colon for Syntax in the doc
  • Loading branch information
cacheung authored Mar 8, 2023
2 parents 792fac2 + a5de1b2 commit c6a0b96
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
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

0 comments on commit c6a0b96

Please sign in to comment.